左侧菜单和页面内容展示

This commit is contained in:
暮光:城中城
2019-05-30 22:45:22 +08:00
parent f5249f39e1
commit 7f4f3fd432
16 changed files with 5413 additions and 3 deletions

View File

@@ -3,6 +3,9 @@ import Home from './views/home/Home.vue'
import UserLogin from './views/user/Login.vue'
import UserRouterView from './views/user/RouterView.vue'
import PageShow from './views/page/Show.vue'
import PageRouterView from './views/page/RouterView.vue'
import CommonNoAuth from './views/common/NoAuth.vue'
let routes = [
@@ -20,6 +23,13 @@ let routes = [
children: [
{path: 'login', name: '系统登录',component: UserLogin, meta: {fullscreen: true}},
]
}, {
path: '/page',
name: '页面',
component: PageRouterView,
children: [
{path: 'show', name: '页面内容展示',component: PageShow},
]
}, {
path: '/common',
name: '',