16 lines
279 B
TypeScript
16 lines
279 B
TypeScript
import { RouteRecordRaw } from 'vue-router'
|
|
|
|
const constantRoutes: RouteRecordRaw[] = [
|
|
{
|
|
path: '/',
|
|
redirect: '/login'
|
|
},
|
|
{
|
|
path: '/login',
|
|
component: () => import('@/views/login/index.vue'),
|
|
meta: { hidden: true }
|
|
}
|
|
]
|
|
|
|
export default constantRoutes
|