จัดหน้า router

This commit is contained in:
Thanit Konmek 2023-07-17 17:00:50 +07:00
parent 9fbc60e8b4
commit afa42c0133
13 changed files with 633 additions and 25 deletions

View file

@ -0,0 +1,18 @@
/**
* Router (insignia)
*/
const Main = () => import("@/modules/09_coin/views/Main.vue");
export default [
{
path: "/coin",
name: "coin",
component: Main,
meta: {
Auth: true,
Key: [9],
Role: "coin",
},
},
];