2018-01-24 07:39:21 +00:00
|
|
|
import Demo from './components/demo.vue'
|
2017-11-03 04:04:39 +00:00
|
|
|
const AsyncComp = () => {
|
2018-02-06 07:21:13 +00:00
|
|
|
const hashs = window.location.hash.split('/')
|
|
|
|
const d = hashs[hashs.length - 1]
|
2017-11-03 04:04:39 +00:00
|
|
|
return {
|
2018-02-11 10:04:31 +00:00
|
|
|
component: import(`../components/vc-select/demo/${d}.vue`),
|
2017-11-03 04:04:39 +00:00
|
|
|
}
|
|
|
|
}
|
|
|
|
export default [
|
2018-02-06 07:21:13 +00:00
|
|
|
{ path: '/:lang/components/:name/:demo?', component: Demo },
|
2018-01-26 05:48:20 +00:00
|
|
|
{ path: '/:lang?/test/:name/:demo?', component: AsyncComp },
|
2018-02-06 07:21:13 +00:00
|
|
|
{ path: '/*', redirect: '/cn/components/menu' },
|
2017-11-03 04:04:39 +00:00
|
|
|
]
|