67 lines
1.8 KiB
JavaScript
67 lines
1.8 KiB
JavaScript
// router/index.js
|
|
import { createRouter, createWebHistory } from 'vue-router';
|
|
import { setupRouterGuards } from './router-guards';
|
|
|
|
const routes = [
|
|
{
|
|
path: '/',
|
|
name: 'home',
|
|
component: () => import('@/views/home/index.vue'),
|
|
// beforeEnter: (to, from, next) => {
|
|
|
|
// localStorage.clear()
|
|
// next()
|
|
// }
|
|
children: [
|
|
{
|
|
path: 'new-releases',
|
|
name: 'new-releases',
|
|
component: () => import('@/views/new-releases/index.vue')
|
|
},
|
|
]
|
|
},
|
|
{
|
|
path: '/contacts',
|
|
name: 'contacts',
|
|
component: () => import('@/views/contacts/index.vue'),
|
|
},
|
|
// {
|
|
// path: '/companyprofil',
|
|
// name: 'Companyprofil',
|
|
// component: () => import('@/views/companyprofil/index.vue'),
|
|
// },
|
|
// {
|
|
// path: '/companyprofildetail',
|
|
// name: 'Companyprofildetail',
|
|
// component: () => import('@/views/companyprofildetail/index.vue'),
|
|
// },
|
|
// {
|
|
// path: '/businessintroduction',
|
|
// name: 'Businessintroduction',
|
|
// component: () => import('@/views/businessintroduction/index.vue'),
|
|
// },
|
|
// {
|
|
// path: '/investor',
|
|
// name: 'Investor',
|
|
// component: () => import('@/views/investor/index.vue'),
|
|
// },
|
|
// {
|
|
// path: '/investorhandbook',
|
|
// name: 'Investorhandbook',
|
|
// component: () => import('@/views/investorhandbook/index.vue'),
|
|
// },
|
|
];
|
|
|
|
const router = createRouter({
|
|
history: createWebHistory(),
|
|
routes
|
|
});
|
|
router.beforeEach((to, from, next) => {
|
|
if (to.meta?.title) {
|
|
document.title = to.meta.title;
|
|
}
|
|
next()
|
|
});
|
|
setupRouterGuards(router);
|
|
export default router;
|