ant-design-vue/examples/routes.js
tangjinzhou 3d5d001d77 fix
2018-01-19 12:14:07 +08:00

12 lines
304 B
JavaScript

const AsyncComp = () => {
const pathnameArr = window.location.pathname.split('/')
const com = pathnameArr[1] || 'button'
const demo = pathnameArr[2] || 'index'
return {
component: import(`../components/menu/demo/${demo}.vue`),
}
}
export default [
{ path: '/*', component: AsyncComp },
]