数据库表导出,支持修改用户密码
This commit is contained in:
27
zyplayer-doc-ui/db-open-ui/src/routes.js
Normal file
27
zyplayer-doc-ui/db-open-ui/src/routes.js
Normal file
@@ -0,0 +1,27 @@
|
||||
import Home from './views/home/Home.vue'
|
||||
|
||||
import TableInfo from './views/table/Info.vue'
|
||||
import TableRouterView from './views/table/RouterView.vue'
|
||||
|
||||
let routes = [
|
||||
{
|
||||
path: '/home',
|
||||
component: Home,
|
||||
name: '主页',
|
||||
meta: {
|
||||
requireAuth: true,
|
||||
}
|
||||
}, {
|
||||
path: '/table',
|
||||
name: '表信息',
|
||||
component: TableRouterView,
|
||||
children: [
|
||||
{path: 'info', name: '表信息',component: TableInfo},
|
||||
]
|
||||
}, {
|
||||
path: '/',
|
||||
redirect: '/home'
|
||||
}
|
||||
];
|
||||
|
||||
export default routes;
|
||||
Reference in New Issue
Block a user