2025-05-22 06:56:37 +00:00
|
|
|
// router/index.js
|
2025-05-23 01:04:20 +00:00
|
|
|
import { createRouter, createWebHistory } from "vue-router";
|
|
|
|
import { setupRouterGuards } from "./router-guards";
|
2025-05-22 06:56:37 +00:00
|
|
|
|
|
|
|
const routes = [
|
2025-05-23 01:04:20 +00:00
|
|
|
{
|
|
|
|
path: "/",
|
2025-05-23 01:09:53 +00:00
|
|
|
name: "index",
|
|
|
|
component: () => import("@/views/index/index.vue"),
|
2025-05-23 01:04:20 +00:00
|
|
|
// beforeEnter: (to, from, next) => {
|
2025-05-22 06:56:37 +00:00
|
|
|
|
2025-05-23 01:04:20 +00:00
|
|
|
// localStorage.clear()
|
|
|
|
// next()
|
|
|
|
// }
|
2025-05-23 00:50:08 +00:00
|
|
|
children: [
|
|
|
|
{
|
2025-05-23 01:09:53 +00:00
|
|
|
path: "home",
|
|
|
|
name: "home",
|
|
|
|
component: () => import("@/views/home/index.vue"),
|
2025-05-23 00:50:08 +00:00
|
|
|
},
|
|
|
|
{
|
2025-05-23 01:09:53 +00:00
|
|
|
path: "press-releases",
|
|
|
|
name: "press-releases",
|
|
|
|
component: () => import("@/views/press-releases/index.vue"),
|
2025-05-23 00:50:08 +00:00
|
|
|
},
|
2025-05-23 00:55:16 +00:00
|
|
|
{
|
2025-05-23 01:09:53 +00:00
|
|
|
path: "/quarterlyresults",
|
|
|
|
name: "QuarterlyResults",
|
2025-05-23 00:55:16 +00:00
|
|
|
component: () =>
|
2025-05-23 01:09:53 +00:00
|
|
|
import("@/views/financialinformation/quarterlyresults/index.vue"),
|
2025-05-23 00:55:16 +00:00
|
|
|
},
|
|
|
|
{
|
2025-05-23 01:09:53 +00:00
|
|
|
path: "/secfilings",
|
|
|
|
name: "SecFilings",
|
2025-05-23 00:55:16 +00:00
|
|
|
component: () =>
|
2025-05-23 01:09:53 +00:00
|
|
|
import("@/views/financialinformation/secfilings/index.vue"),
|
2025-05-23 00:55:16 +00:00
|
|
|
},
|
2025-05-23 00:50:08 +00:00
|
|
|
],
|
2025-05-23 01:04:20 +00:00
|
|
|
},
|
|
|
|
{
|
|
|
|
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'),
|
|
|
|
// },
|
2025-05-22 06:56:37 +00:00
|
|
|
];
|
|
|
|
|
|
|
|
const router = createRouter({
|
2025-05-23 01:04:20 +00:00
|
|
|
history: createWebHistory(),
|
|
|
|
routes,
|
2025-05-22 06:56:37 +00:00
|
|
|
});
|
|
|
|
router.beforeEach((to, from, next) => {
|
2025-05-23 01:04:20 +00:00
|
|
|
if (to.meta?.title) {
|
|
|
|
document.title = to.meta.title;
|
|
|
|
}
|
|
|
|
next();
|
2025-05-22 06:56:37 +00:00
|
|
|
});
|
|
|
|
setupRouterGuards(router);
|
|
|
|
export default router;
|