2019-11-21 14:43:25 +08:00

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 };