refactor(imports): removed useless defineProps import

This commit is contained in:
Corentin Thomasset
2022-05-24 00:07:24 +02:00
parent d591a73ce7
commit 5ce1262fb4
+1 -1
View File
@@ -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);