fix load
This commit is contained in:
parent
1ea2220dc7
commit
d71f634a18
1 changed files with 4 additions and 2 deletions
|
|
@ -1,5 +1,5 @@
|
|||
<script setup lang="ts">
|
||||
import { ref, reactive, onMounted, watch } from "vue";
|
||||
import { ref, reactive, onMounted, watch, defineAsyncComponent } from "vue";
|
||||
import { useQuasar } from "quasar";
|
||||
|
||||
import http from "@/plugins/http";
|
||||
|
|
@ -23,7 +23,9 @@ import type {
|
|||
} from "@/modules/04_registryPerson/interface/response/Main";
|
||||
|
||||
/** importComponents*/
|
||||
import TableView from "@/modules/04_registryPerson/components/TableView.vue";
|
||||
const TableView = defineAsyncComponent(
|
||||
() => import("@/modules/04_registryPerson/components/TableView.vue")
|
||||
);
|
||||
import DialogHeader from "@/components/DialogHeader.vue";
|
||||
|
||||
const $q = useQuasar();
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue