30 lines
566 B
TypeScript
30 lines
566 B
TypeScript
|
|
/**
|
||
|
|
* Router ระบบทะเบียนประวัติ (Registry)
|
||
|
|
*/
|
||
|
|
|
||
|
|
const Main = () => import("@/modules/04_registry/views/Main.vue");
|
||
|
|
const Detail = () => import("@/modules/04_registry/components/Profile.vue");
|
||
|
|
|
||
|
|
export default [
|
||
|
|
{
|
||
|
|
path: "/registry",
|
||
|
|
name: "registry",
|
||
|
|
component: Main,
|
||
|
|
meta: {
|
||
|
|
Auth: true,
|
||
|
|
Key: [7],
|
||
|
|
Role: "registry",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
{
|
||
|
|
path: "/registry/:id",
|
||
|
|
name: "registryDetail",
|
||
|
|
component: Detail,
|
||
|
|
meta: {
|
||
|
|
Auth: true,
|
||
|
|
Key: [7],
|
||
|
|
Role: "registry",
|
||
|
|
},
|
||
|
|
},
|
||
|
|
];
|