|
|
@@ -1,9 +1,24 @@
|
|
|
<template>
|
|
|
<div>
|
|
|
<DefaultHeaderPage title="Cadastro de Unidade" />
|
|
|
+
|
|
|
+ <CustomTabComponent v-model:active-tab="activeTab" :tabs />
|
|
|
</div>
|
|
|
</template>
|
|
|
|
|
|
<script setup>
|
|
|
import DefaultHeaderPage from "src/components/layout/DefaultHeaderPage.vue";
|
|
|
+import CustomTabComponent from "src/components/shared/CustomTabComponent.vue";
|
|
|
+import { ref } from "vue";
|
|
|
+
|
|
|
+const activeTab = ref("unit_data");
|
|
|
+
|
|
|
+const tabs = ref([
|
|
|
+ { name: "unit_data", label: "Dados da Unidade" },
|
|
|
+ { name: "partners", label: "Sócios" },
|
|
|
+ { name: "contracts", label: "Contratos" },
|
|
|
+ { name: "financial", label: "Financeiro" },
|
|
|
+ { name: "history", label: "Histórico" },
|
|
|
+ { name: "medias", label: "Mídias" },
|
|
|
+]);
|
|
|
</script>
|