2018-04-04 10:39:21 +00:00
|
|
|
import Demo from './components/demo.vue'
|
2018-04-04 15:59:38 +00:00
|
|
|
const AsyncComp = () => {
|
|
|
|
const d = window.location.hash.replace('#', '')
|
|
|
|
return {
|
2018-04-07 02:32:13 +00:00
|
|
|
component: import(`../components/transfer/demo/${d}`),
|
2018-04-04 15:59:38 +00:00
|
|
|
}
|
|
|
|
}
|
2018-04-04 10:39:21 +00:00
|
|
|
export default [
|
2018-04-04 15:59:38 +00:00
|
|
|
{ path: '/:prefix?/components/:name/', component: Demo },
|
|
|
|
{ path: '/:prefix?/test/:demo?/', component: AsyncComp },
|
|
|
|
{ path: '/*', redirect: '/ant-design/components/button/' },
|
2018-04-04 10:39:21 +00:00
|
|
|
]
|