build: add files of vant-cli 2

This commit is contained in:
陈嘉涵
2019-11-18 16:27:12 +08:00
parent 28e2849087
commit 6514b650d0
46 changed files with 12125 additions and 249 deletions

View File

@@ -0,0 +1,24 @@
import { documents } from '../../dist/desktop-config';
const routes = [];
const names = Object.keys(documents);
Object.keys(documents).forEach((name, index) => {
if (index === 0) {
routes.push({
path: '*',
redirect: () => `/${names[0]}`
});
}
routes.push({
name,
component: documents[name],
path: `/${name}`,
meta: {
name
}
});
});
export default routes;