no message

Former-commit-id: 4ff959864c27386d2341886771f701e63c0672f8
Former-commit-id: 38cb84d340e9e94f14d535de64f98f237d85ecc9
Former-commit-id: 8083bbb37a37f8e281ab331c87cf40d0837b9a0d
This commit is contained in:
liyang
2018-06-09 19:29:47 +08:00
parent f6020167ad
commit 1d3f8b0dea
4 changed files with 59 additions and 32 deletions

View File

@@ -38,6 +38,8 @@ const routes = [
{ path: 'icon/select', name: `${pre}icon-select`, component: () => import('@/pages/demo/components/icon/select.vue') },
{ path: 'icon/svg', name: `${pre}icon-svg`, component: () => import('@/pages/demo/components/icon/svg.vue') },
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/components/index/index.vue') },
{ path: 'layout/grid', name: `${pre}layout-grid`, component: () => import('@/pages/demo/components/layout/grid.vue') },
{ path: 'layout/splitpane', name: `${pre}layout-splitpane`, component: () => import('@/pages/demo/components/layout/splitpane.vue') },
{ path: 'markdown', name: `${pre}markdown`, component: () => import('@/pages/demo/components/markdown/index.vue') }
])('demo-components-')
},
@@ -58,8 +60,6 @@ const routes = [
{ path: 'import/xlsx', name: `${pre}import-xlsx`, component: () => import('@/pages/demo/plugins/import/xlsx.vue') },
{ path: 'index', name: `${pre}index`, component: () => import('@/pages/demo/plugins/index/index.vue') },
{ path: 'js-cookie', name: `${pre}js-cookie`, component: () => import('@/pages/demo/plugins/js-cookie/index.vue') },
{ path: 'layout/grid', name: `${pre}layout-grid`, component: () => import('@/pages/demo/plugins/layout/grid.vue') },
{ path: 'layout/splitpane', name: `${pre}layout-splitpane`, component: () => import('@/pages/demo/plugins/layout/splitpane.vue') },
{ path: 'mock/ajax', name: `${pre}mock-ajax`, component: () => import('@/pages/demo/plugins/mock/ajax.vue') },
{ path: 'mock/dpd', name: `${pre}mock-dpd`, component: () => import('@/pages/demo/plugins/mock/dpd.vue') },
{ path: 'mock/dtd', name: `${pre}mock-dtd`, component: () => import('@/pages/demo/plugins/mock/dtd.vue') },
@@ -74,7 +74,7 @@ const routes = [
}
]
routes[2].children.forEach(e => {
routes[1].children.forEach(e => {
console.log(`{ path: \`\${pre}${e.path}\`, title: 'title' }`)
})