From 374e0c3313cb962173e171265e03c5854273a048 Mon Sep 17 00:00:00 2001 From: ArneBo Date: Sat, 18 Jan 2025 19:17:59 +0100 Subject: [PATCH] fix(ui): tabs display --- front/src/components/ui/Tabs.vue | 7 +++++-- front/src/components/ui/tabs.scss | 22 ++++++++++++++++++++-- 2 files changed, 25 insertions(+), 4 deletions(-) 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) => {