diff --git a/front/src/components/ui/Tabs.vue b/front/src/components/ui/Tabs.vue index a00978170..360238a4d 100644 --- a/front/src/components/ui/Tabs.vue +++ b/front/src/components/ui/Tabs.vue @@ -2,6 +2,8 @@ import { TABS_INJECTION_KEY } from '~/injection-keys' import { provide, reactive, ref, watch } from 'vue' +import Button from '~/components/ui/Button.vue' + const currentTab = ref() const tabs = reactive([] as string[]) const icons = reactive([] as string[]) @@ -22,14 +24,16 @@ watch(() => tabs.length, (to, from) => {