fix import
This commit is contained in:
parent
66bb690fa1
commit
c752fba862
17 changed files with 22 additions and 25 deletions
|
|
@ -1,12 +1,9 @@
|
|||
/*** Router ระบบทะเบียนประวัติลูกจ้าง (registryEmployee) */
|
||||
import { defineAsyncComponent } from "vue";
|
||||
|
||||
const Main = defineAsyncComponent(
|
||||
() => import("@/modules/08_registryEmployee/views/Main.vue")
|
||||
);
|
||||
const DetailView = defineAsyncComponent(
|
||||
() => import("@/modules/08_registryEmployee/views/DetailView.vue")
|
||||
);
|
||||
const Main = () => import("@/modules/08_registryEmployee/views/Main.vue");
|
||||
|
||||
const DetailView = () =>
|
||||
import("@/modules/08_registryEmployee/views/DetailView.vue");
|
||||
|
||||
// const CreateEmployee = defineAsyncComponent(
|
||||
// () => import("@/modules/08_registryEmployee/views/Add.vue")
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue