44 lines
1.1 KiB
JavaScript
44 lines
1.1 KiB
JavaScript
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
|
|
});
|