ตั้งค่าระบบ => UI
This commit is contained in:
parent
587daf6a0e
commit
c82577c05b
8 changed files with 340 additions and 0 deletions
12
src/modules/04_system/router.ts
Normal file
12
src/modules/04_system/router.ts
Normal file
|
|
@ -0,0 +1,12 @@
|
|||
const MainView = () => import("@/modules/04_system/views/MainView.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/system",
|
||||
name: "viewSystem",
|
||||
component: MainView,
|
||||
meta: {
|
||||
Role: ["SUPER_ADMIN", "ADMIN"],
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue