ant-design-vue/site/routes.js

125 lines
3.4 KiB
JavaScript
Raw Normal View History

2018-04-09 14:49:58 +00:00
import Layout from './components/layout.vue'
2018-04-20 08:58:40 +00:00
import Iframe from './components/iframe.vue'
2018-07-13 13:55:29 +00:00
import demoRoutes from './demoRoutes'
2018-07-14 09:59:25 +00:00
import NProgress from 'nprogress'
2018-04-09 14:49:58 +00:00
2018-07-14 09:59:25 +00:00
const beforeEnter = (to, from, next) => {
NProgress.start()
next()
}
2018-04-04 10:39:21 +00:00
export default [
{ path: '/ant-design-vue/components',
2018-07-13 13:55:29 +00:00
component: Layout,
props: (route) => {
const name = route.path.split('/ant-design-vue/components/')[1].split('/')[0]
2018-07-13 13:55:29 +00:00
return { name, showDemo: true }
},
2018-07-14 09:59:25 +00:00
children: demoRoutes.map((item) => ({
...item,
beforeEnter,
})),
2018-07-13 13:55:29 +00:00
},
{ path: '/ant-design-vue/iframe',
2018-07-13 13:55:29 +00:00
component: Iframe,
children: demoRoutes.map((item) => ({
...item,
props: (route) => {
const hash = route.hash.replace('#', '')
return { iframeName: hash }
},
})),
},
2018-04-09 14:49:58 +00:00
{
path: '/ant-design-vue',
2018-04-09 14:49:58 +00:00
component: Layout,
props: (route) => {
2018-04-10 04:08:41 +00:00
const name = route.path.split('/docs/vue/')[1].split('/')[0]
2018-07-13 13:55:29 +00:00
return { name, showApi: true }
2018-04-09 14:49:58 +00:00
},
children: [
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/customize-theme',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/customize-theme.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/customize-theme-cn',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/customize-theme.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/getting-started',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/getting-started.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/getting-started-cn',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/getting-started.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/i18n',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/i18n.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/i18n-cn',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/i18n.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/introduce',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/introduce.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/introduce-cn',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/introduce.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/use-with-vue-cli',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/use-with-vue-cli.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
{
2018-04-10 04:08:41 +00:00
path: 'docs/vue/use-with-vue-cli-cn',
2018-04-09 14:49:58 +00:00
component: () => import('../docs/vue/use-with-vue-cli.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-09 14:49:58 +00:00
},
2018-12-14 13:35:19 +00:00
{
path: 'docs/vue/faq',
component: () => import('../docs/vue/faq.en-US.md'),
beforeEnter,
},
{
path: 'docs/vue/faq-cn',
component: () => import('../docs/vue/faq.zh-CN.md'),
beforeEnter,
},
{
path: 'docs/vue/sponsor',
component: () => import('../docs/vue/sponsor.en-US.md'),
beforeEnter,
},
{
path: 'docs/vue/sponsor-cn',
component: () => import('../docs/vue/sponsor.zh-CN.md'),
beforeEnter,
},
2018-04-21 10:50:10 +00:00
{
path: 'docs/vue/changelog',
component: () => import('../CHANGELOG.en-US.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-21 10:50:10 +00:00
},
{
path: 'docs/vue/changelog-cn',
component: () => import('../CHANGELOG.zh-CN.md'),
2018-07-14 09:59:25 +00:00
beforeEnter,
2018-04-21 10:50:10 +00:00
},
{ path: '', redirect: '/ant-design-vue/vue/docs/introduce/' },
2018-04-09 14:49:58 +00:00
],
},
{ path: '/*', redirect: '/ant-design-vue/docs/vue/introduce/' },
2018-04-04 10:39:21 +00:00
]