数据库问文档重构优化

This commit is contained in:
暮光:城中城
2019-07-05 22:40:40 +08:00
parent 67c6ffc877
commit 1b706019cd
28 changed files with 266 additions and 972 deletions

View File

@@ -8,6 +8,9 @@ import TableInfo from './views/table/Info.vue'
import TableDatabase from './views/table/Database.vue'
import TableRouterView from './views/table/RouterView.vue'
import DataDatasourceManage from './views/data/DatasourceManage.vue'
import DataRouterView from './views/data/RouterView.vue'
import CommonNoAuth from './views/common/NoAuth.vue'
let routes = [
@@ -34,6 +37,13 @@ let routes = [
{path: 'info', name: '表信息',component: TableInfo},
{path: 'database', name: '库信息',component: TableDatabase},
]
}, {
path: '/data',
name: '数据信息',
component: DataRouterView,
children: [
{path: 'datasourceManage', name: '数据源管理',component: DataDatasourceManage},
]
}, {
path: '/common',
name: '',