hrms-recruit/src/modules/01_exam/router.ts

24 lines
407 B
TypeScript
Raw Normal View History

const Main = () => import('@/modules/01_exam/views/ExamMain.vue')
const Detail = () => import('@/modules/01_exam/views/ExamDetail.vue')
export default [
{
path: '/exam',
name: 'exam',
component: Main,
meta: {
Auth: true
// Key: [7]
}
},
{
path: '/exam/:id',
name: 'examDetail',
component: Detail,
meta: {
Auth: true,
Key: [7]
}
}
]