ffix
This commit is contained in:
parent
bc8ad92163
commit
274b945b33
1 changed files with 5 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, onMounted, computed } from "vue";
|
||||
import { ref, onMounted, computed, defineAsyncComponent } from "vue";
|
||||
import { useQuasar } from "quasar";
|
||||
|
||||
import { useRoute, useRouter } from "vue-router";
|
||||
|
|
@ -27,7 +27,10 @@ import type { ResponseObject } from "@/modules/04_registryPerson/interface/respo
|
|||
import CardNotPermission from "@/components/CardNotPermission.vue";
|
||||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
import TabMain from "@/modules/04_registryPerson/components/detail/TabMain.vue";
|
||||
import DialogRetired from "@/modules/04_registryPerson/components/DialogRetired.vue";
|
||||
|
||||
const DialogRetired = defineAsyncComponent(
|
||||
() => import("@/modules/04_registryPerson/components/DialogRetired.vue")
|
||||
);
|
||||
|
||||
/** use*/
|
||||
const $q = useQuasar();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue