12345678910111213141516171819202122232425262728293031323334353637383940414243 |
- import { createRouter, createWebHashHistory } from 'vue-router';
- import _ from 'lodash';
- //немедленная загрузка
- //import Reader from './components/Reader/Reader.vue';
- const Reader = () => import('./components/Reader/Reader.vue');
- const ExternalLibs = () => import('./components/ExternalLibs/ExternalLibs.vue');
- const myRoutes = [
- ['/', null, null, '/reader'],
- ['/reader', Reader],
- ['/external-libs', ExternalLibs],
- ['/:pathMatch(.*)*', null, null, '/reader'],
- ];
- let routes = {};
- for (let route of myRoutes) {
- const [path, component, name, redirect] = route;
- let cleanRoute = _.pickBy({path, component, name, redirect}, _.identity);
-
- let parts = cleanRoute.path.split('~');
- let f = routes;
- for (let part of parts) {
- const curRoute = _.assign({}, cleanRoute, { path: part });
- if (!f.children)
- f.children = [];
- let r = f.children;
- f = _.find(r, {path: part});
- if (!f) {
- r.push(curRoute);
- f = curRoute;
- }
- }
- }
- routes = routes.children;
- export default createRouter({
- history: createWebHashHistory(),
- routes
- });
|