ui เพิ่ม เมนูย่อยทะเบียนประะวัติโปรไฟล์

This commit is contained in:
AnandaTon 2023-07-21 15:05:25 +07:00
parent 59cdff8851
commit cecb277d8a
2 changed files with 106 additions and 0 deletions

View file

@ -4,6 +4,10 @@
const Main = () => import("@/modules/04_registry/views/Main.vue");
const Detail = () => import("@/modules/04_registry/components/Profile.vue");
const addOrder = () =>
import(
"@/modules/05_placement/components/OrderPlacement/addOrderPlacement.vue"
);
export default [
{
@ -26,4 +30,14 @@ export default [
Role: "registry",
},
},
{
path: "/dismiss-order/add",
name: "addOrder",
component: addOrder,
meta: {
Auth: true,
Key: [7],
Role: "registry",
},
},
];