เพิ่มโครงสร้าง folder งวด 5
This commit is contained in:
parent
f57a28c19f
commit
06f921e4e1
27 changed files with 263 additions and 10 deletions
25
src/modules/13_salary/router.ts
Normal file
25
src/modules/13_salary/router.ts
Normal file
|
|
@ -0,0 +1,25 @@
|
|||
const salaryChart = () => import("@/modules/13_salary/views/salaryChart.vue");
|
||||
const salaryRate = () => import("@/modules/13_salary/views/salaryRate.vue");
|
||||
|
||||
export default [
|
||||
{
|
||||
path: "/salary",
|
||||
name: "salaryChart",
|
||||
component: salaryChart,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1.1],
|
||||
Role: "salary",
|
||||
},
|
||||
},
|
||||
{
|
||||
path: "/salary/rate",
|
||||
name: "salaryRate",
|
||||
component: salaryRate,
|
||||
meta: {
|
||||
Auth: true,
|
||||
Key: [1.2],
|
||||
Role: "salary",
|
||||
},
|
||||
},
|
||||
];
|
||||
Loading…
Add table
Add a link
Reference in a new issue