49 lines
1.3 KiB
JavaScript
49 lines
1.3 KiB
JavaScript
import Home from './views/home/Home.vue'
|
|
|
|
import UserLogin from './views/user/Login.vue'
|
|
import UserMyInfo from './views/user/MyInfo.vue'
|
|
import DubboDocView from './views/doc/DubboDocView.vue'
|
|
import UserRouterView from './views/user/RouterView.vue'
|
|
|
|
import PageTableView from './components/layouts/PageTableView'
|
|
|
|
import CommonNoAuth from './views/common/NoAuth.vue'
|
|
|
|
let routes = [
|
|
{
|
|
path: '/home',
|
|
component: Home,
|
|
name: '主页',
|
|
meta: {
|
|
requireAuth: true,
|
|
}
|
|
}, {
|
|
path: '/',
|
|
redirect: '/home'
|
|
}, {
|
|
path: '/',
|
|
name: 'Tab标签页',
|
|
component: PageTableView,
|
|
children: [
|
|
{path: '/doc/dubboDocView', name: '文档信息', component: DubboDocView},
|
|
{path: '/user/myInfo', name: '我的信息', component: UserMyInfo},
|
|
]
|
|
}, {
|
|
path: '/user',
|
|
name: '用户管理',
|
|
component: UserRouterView,
|
|
children: [
|
|
{path: 'login', name: '系统登录',component: UserLogin, meta: {fullscreen: true}},
|
|
]
|
|
}, {
|
|
path: '/common',
|
|
name: '',
|
|
component: UserRouterView,
|
|
children: [
|
|
{path: 'noAuth', name: '没有权限',component: CommonNoAuth},
|
|
]
|
|
}
|
|
];
|
|
|
|
export default routes;
|