|
|
|
import {createRouter, createWebHashHistory} from 'vue-router';
|
|
|
|
|
|
|
|
const routes: any = [
|
|
|
|
{ path: '/', redirect: '/MicrowaveRadiation'},
|
|
|
|
// {
|
|
|
|
// path: '/MicrowaveRadiation',
|
|
|
|
// component: () => import('../components/MicrowaveRadiation/Index.vue'),
|
|
|
|
// children: [
|
|
|
|
// { path: '/MicrowaveRadiation', redirect: '/MicrowaveRadiation/VerticalProfile' },
|
|
|
|
// { path: 'VerticalProfile', component: () => import('./../components/MicrowaveRadiation/VerticalProfile.vue') },
|
|
|
|
// { path: 'ConvectiveIndex', component: () => import('./../components/MicrowaveRadiation/ConvectiveIndex.vue') },
|
|
|
|
// { path: 'TLogP', component: () => import('./../components/MicrowaveRadiation/TLogP.vue') },
|
|
|
|
// { path: 'BPInversion', component: () => import('./../components/MicrowaveRadiation/BPInversion.vue') }
|
|
|
|
// ]
|
|
|
|
// },
|
|
|
|
{ path: '/MicrowaveRadiation', component: () => import('../components/MicrowaveRadiation.vue') },
|
|
|
|
{ path: '/RamanLidar', component: () => import('../components/RamanLidar.vue') },
|
|
|
|
{ path: '/SynergyEvaluation', component: () => import('../components/SynergyEvaluation.vue') },
|
|
|
|
{ path: '/DecisionSupport', component: () => import('../components/DecisionSupport.vue') },
|
|
|
|
{ path: '/SystemManagement', component: () => import('../components/SystemManagement.vue') }
|
|
|
|
];
|
|
|
|
|
|
|
|
const router = createRouter({
|
|
|
|
history: createWebHashHistory(),
|
|
|
|
routes,
|
|
|
|
linkActiveClass: 'active'
|
|
|
|
})
|
|
|
|
export default router;
|