This commit is contained in:
setthawutttty 2024-10-21 17:56:47 +07:00
parent 979ecb381f
commit 9d3601f23f
32 changed files with 262 additions and 79 deletions

View file

@ -1,10 +1,14 @@
<script setup lang="ts">
import { ref } from "vue";
import { useRegistryNewDataStore } from "@/modules/04_registryPerson/store";
/** importComponents*/
import OtherInformation from "@/modules/04_registryPerson/components/detail/Other/01_OtherInformation.vue";
import Documentipline from "@/modules/04_registryPerson/components/detail/Other/02_Document.vue";
const storeRegistry = useRegistryNewDataStore();
const tab = ref<string>("1");
</script>
<template>
@ -33,10 +37,10 @@ const tab = ref<string>("1");
<q-tab-panels v-model="tab" animated>
<q-tab-panel name="1">
<OtherInformation />
<OtherInformation :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
<q-tab-panel name="2">
<Documentipline />
<Documentipline :is-leave="storeRegistry.isLeave" />
</q-tab-panel>
</q-tab-panels>
</template>