|
|
@@ -1,33 +1,3 @@
|
|
|
-<script setup>
|
|
|
-import { defineAsyncComponent, ref } from "vue";
|
|
|
-
|
|
|
-import CustomTabComponent from "src/components/shared/CustomTabComponent.vue";
|
|
|
-import DefaultHeaderPage from "src/components/layout/DefaultHeaderPage.vue";
|
|
|
-
|
|
|
-const SettingsTab = defineAsyncComponent(
|
|
|
- () => import("./tabs/SettingsTab.vue"),
|
|
|
-);
|
|
|
-const ContractsTab = defineAsyncComponent(
|
|
|
- () => import("./tabs/ContractsTab.vue"),
|
|
|
-);
|
|
|
-const BillingsTab = defineAsyncComponent(
|
|
|
- () => import("./tabs/BillingsTab.vue"),
|
|
|
-);
|
|
|
-
|
|
|
-const InhabitantClassificationsTab = defineAsyncComponent(
|
|
|
- () => import("./tabs/InhabitantClassificationsTab.vue"),
|
|
|
-);
|
|
|
-
|
|
|
-const currentTab = ref("settings");
|
|
|
-
|
|
|
-const tabs = [
|
|
|
- { name: "settings", label: "Configurações" },
|
|
|
- { name: "inhabitant_classifications", label: "Faixas" },
|
|
|
- { name: "contracts", label: "Contratos" },
|
|
|
- { name: "billings", label: "Cobranças" },
|
|
|
-];
|
|
|
-</script>
|
|
|
-
|
|
|
<template>
|
|
|
<div>
|
|
|
<DefaultHeaderPage title="TBR - Configurações" :show-filter-icon="false" />
|
|
|
@@ -57,3 +27,33 @@ const tabs = [
|
|
|
</div>
|
|
|
</div>
|
|
|
</template>
|
|
|
+
|
|
|
+<script setup>
|
|
|
+import { defineAsyncComponent, ref } from "vue";
|
|
|
+
|
|
|
+import CustomTabComponent from "src/components/shared/CustomTabComponent.vue";
|
|
|
+import DefaultHeaderPage from "src/components/layout/DefaultHeaderPage.vue";
|
|
|
+
|
|
|
+const SettingsTab = defineAsyncComponent(
|
|
|
+ () => import("./tabs/SettingsTab.vue"),
|
|
|
+);
|
|
|
+const ContractsTab = defineAsyncComponent(
|
|
|
+ () => import("./tabs/ContractsTab.vue"),
|
|
|
+);
|
|
|
+const BillingsTab = defineAsyncComponent(
|
|
|
+ () => import("./tabs/BillingsTab.vue"),
|
|
|
+);
|
|
|
+
|
|
|
+const InhabitantClassificationsTab = defineAsyncComponent(
|
|
|
+ () => import("./tabs/InhabitantClassificationsTab.vue"),
|
|
|
+);
|
|
|
+
|
|
|
+const currentTab = ref("settings");
|
|
|
+
|
|
|
+const tabs = [
|
|
|
+ { name: "settings", label: "Configurações" },
|
|
|
+ { name: "inhabitant_classifications", label: "Faixas" },
|
|
|
+ { name: "contracts", label: "Contratos" },
|
|
|
+ { name: "billings", label: "Cobranças" },
|
|
|
+];
|
|
|
+</script>
|