diff options
author | 2022-05-24 00:07:24 +0200 | |
---|---|---|
committer | 2022-05-24 00:07:24 +0200 | |
commit | 5ce1262fb44864b829dac09d5c0b9b68d522ceb7 (patch) | |
tree | 942d5b51423dd61adea5a6ab99fd2dcc09086a32 /src | |
parent | d591a73ce71a07ecb0a411fee44ba5f67a7f8c26 (diff) | |
download | it-tools-5ce1262fb44864b829dac09d5c0b9b68d522ceb7.tar.gz it-tools-5ce1262fb44864b829dac09d5c0b9b68d522ceb7.tar.zst it-tools-5ce1262fb44864b829dac09d5c0b9b68d522ceb7.zip |
refactor(imports): removed useless defineProps import
Diffstat (limited to 'src')
-rw-r--r-- | src/components/ToolCard.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/ToolCard.vue b/src/components/ToolCard.vue index e7e36a8..9c00367 100644 --- a/src/components/ToolCard.vue +++ b/src/components/ToolCard.vue @@ -16,7 +16,7 @@ <script setup lang="ts"> import type { ITool } from '@/tools/Tool'; -import { toRefs, defineProps } from 'vue'; +import { toRefs } from 'vue'; const props = defineProps<{ tool: ITool & { category: string } }>(); const { tool } = toRefs(props); |