mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
30 lines
474 B
JavaScript
30 lines
474 B
JavaScript
import decamelize from 'decamelize';
|
|
import DemoHome from './components/DemoHome';
|
|
import { demos } from '../../dist/mobile-config';
|
|
|
|
const routes = [];
|
|
const names = Object.keys(demos);
|
|
|
|
routes.push({
|
|
path: '/home',
|
|
component: DemoHome
|
|
});
|
|
|
|
routes.push({
|
|
path: '*',
|
|
redirect: '/home'
|
|
});
|
|
|
|
names.forEach(name => {
|
|
routes.push({
|
|
name,
|
|
component: demos[name],
|
|
path: `/${decamelize(name, '-')}`,
|
|
meta: {
|
|
name
|
|
}
|
|
});
|
|
});
|
|
|
|
export { routes };
|