diff --git a/src/components/ProfileBanner.vue b/src/components/ProfileBanner.vue index c1217ee0..ebb2e0ab 100644 --- a/src/components/ProfileBanner.vue +++ b/src/components/ProfileBanner.vue @@ -17,6 +17,7 @@ defineProps<{ useToggle?: boolean; menu?: { icon: string; color: string; bgColor: string }[]; + tabsList?: { name: string; label: string }[]; }>(); defineEmits<{ @@ -35,12 +36,17 @@ const toggleStatus = defineModel('toggleStatus', { default: 'CREATED', }); +const currentTab = defineModel('currentTab'); + const showOverlay = ref(false); + +currentTab.value = 'name1';