aboutsummaryrefslogtreecommitdiff
path: root/src/components/SearchBarItem.vue
diff options
context:
space:
mode:
authorGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-12-17 01:30:02 +0100
committerGravatar Corentin Thomasset <corentin.thomasset74@gmail.com> 2022-12-17 01:30:02 +0100
commit4cd809bd0c94836532f58a2ec6aa131694cce10d (patch)
tree7a2f5f61c3101a3c0761cc32b67a7f9ad67222e5 /src/components/SearchBarItem.vue
parent8d09086e78b6de1eb7108b8d3ba08fcca2c5d577 (diff)
downloadit-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.tar.gz
it-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.tar.zst
it-tools-4cd809bd0c94836532f58a2ec6aa131694cce10d.zip
feat(tools): added favorite tool handling
Diffstat (limited to 'src/components/SearchBarItem.vue')
-rw-r--r--src/components/SearchBarItem.vue4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/components/SearchBarItem.vue b/src/components/SearchBarItem.vue
index d81606a..ca79268 100644
--- a/src/components/SearchBarItem.vue
+++ b/src/components/SearchBarItem.vue
@@ -1,8 +1,8 @@
<script lang="ts" setup>
-import type { ITool } from '@/tools/tool';
+import type { Tool } from '@/tools/tools.types';
import { toRefs } from 'vue';
-const props = defineProps<{ tool: ITool }>();
+const props = defineProps<{ tool: Tool }>();
const { tool } = toRefs(props);
</script>