diff --git a/front/src/components/ui/Tabs.vue b/front/src/components/ui/Tabs.vue index 4dc0aa310..365966fd1 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,15 +24,16 @@ watch(() => tabs.length, (to, from) => {