fiee-official-website/src/config/headerMenuConfig.js

116 lines
3.3 KiB
JavaScript
Raw Normal View History

2025-05-23 04:03:48 +00:00
import { useI18n } from "vue-i18n";
2025-05-23 00:50:08 +00:00
export const useHeaderMenuConfig = () => {
2025-05-23 04:03:48 +00:00
const { t } = useI18n();
2025-05-23 00:50:08 +00:00
return [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.title"),
key: "corporate_information",
2025-05-23 00:50:08 +00:00
children: [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.company_overview"),
key: "company_overview",
href: "/companyoverview",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.business_introduction"),
key: "business_introduction",
href: "/businessservices",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.management"),
key: "management",
href: "/manage",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.board_of_directors"),
key: "board_of_directors",
href: "/boarddirectors",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.committee_appointments"),
key: "committee_appointments",
href: "/committeeappointment",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.governance"),
key: "governance",
href: "/govern",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.corporate_information.corporate_video"),
key: "corporate_video",
2025-05-23 00:50:08 +00:00
},
],
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.financial_information.title"),
key: "financial_information",
2025-05-23 00:50:08 +00:00
children: [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.financial_information.sec_filings"),
key: "sec_filings",
2025-05-23 00:55:16 +00:00
href: "/secfilings",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.financial_information.quarterly_results"),
key: "quarterly_results",
2025-05-23 00:55:16 +00:00
href: "/quarterlyresults",
2025-05-23 00:50:08 +00:00
},
],
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.stock_information.title"),
key: "stock_information",
2025-05-23 00:50:08 +00:00
children: [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.stock_information.stock_quote"),
key: "stock_quote",
2025-05-23 04:28:26 +00:00
href:'/stock-quote'
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.stock_information.historic_stock_price"),
key: "historic_stock_price",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.stock_information.investment_calculator"),
key: "investment_calculator",
2025-05-23 04:28:26 +00:00
href:'/calculator'
2025-05-23 00:50:08 +00:00
},
],
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.news_releases.title"),
key: "news_releases",
2025-05-23 00:50:08 +00:00
children: [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.news_releases.press_releases"),
key: "press_releases",
href: "/press-releases",
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.news_releases.events_calendar"),
key: "events_calendar",
2025-05-23 00:50:08 +00:00
},
],
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.investor_resources.title"),
key: "investor_resources",
2025-05-23 00:50:08 +00:00
children: [
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.investor_resources.ir_contacts"),
key: "ir_contacts",
2025-05-23 04:28:26 +00:00
href:'/contacts'
2025-05-23 00:50:08 +00:00
},
{
2025-05-23 04:03:48 +00:00
label: t("header_menu.investor_resources.email_alerts"),
key: "email_alerts",
2025-05-23 04:28:26 +00:00
href:'/email-alerts'
2025-05-23 00:50:08 +00:00
},
],
},
2025-05-23 04:03:48 +00:00
];
};