2026-07-30 11:23:50 +08:00
|
|
|
/* eslint-disable */
|
|
|
|
|
/* prettier-ignore */
|
|
|
|
|
// Generated by elegant-router
|
|
|
|
|
// Read more: https://github.com/soybeanjs/elegant-router
|
|
|
|
|
|
|
|
|
|
import type { RouteComponent } from "vue-router";
|
|
|
|
|
import type { LastLevelRouteKey, RouteLayout } from "@elegant-router/types";
|
|
|
|
|
|
|
|
|
|
import BaseLayout from "@/layouts/base-layout/index.vue";
|
|
|
|
|
import BlankLayout from "@/layouts/blank-layout/index.vue";
|
|
|
|
|
|
|
|
|
|
export const layouts: Record<RouteLayout, RouteComponent | (() => Promise<RouteComponent>)> = {
|
|
|
|
|
base: BaseLayout,
|
|
|
|
|
blank: BlankLayout,
|
|
|
|
|
};
|
|
|
|
|
|
|
|
|
|
export const views: Record<LastLevelRouteKey, RouteComponent | (() => Promise<RouteComponent>)> = {
|
|
|
|
|
403: () => import("@/views/_builtin/403/index.vue"),
|
|
|
|
|
404: () => import("@/views/_builtin/404/index.vue"),
|
|
|
|
|
500: () => import("@/views/_builtin/500/index.vue"),
|
|
|
|
|
"iframe-page": () => import("@/views/_builtin/iframe-page/[url].vue"),
|
|
|
|
|
login: () => import("@/views/_builtin/login/index.vue"),
|
|
|
|
|
headphone_brand: () => import("@/views/headphone/brand/index.vue"),
|
2026-08-17 15:41:32 +08:00
|
|
|
headphone_impedance: () => import("@/views/headphone/impedance/index.vue"),
|
2026-07-30 11:23:50 +08:00
|
|
|
headphone_model: () => import("@/views/headphone/model/index.vue"),
|
|
|
|
|
home: () => import("@/views/home/index.vue"),
|
2026-08-14 11:26:20 +08:00
|
|
|
meilisearch: () => import("@/views/meilisearch/index.vue"),
|
2026-07-30 11:23:50 +08:00
|
|
|
"share-code_log": () => import("@/views/share-code/log/index.vue"),
|
|
|
|
|
system_users: () => import("@/views/system/users/index.vue"),
|
|
|
|
|
"toolbox_luxsin-controller": () => import("@/views/toolbox/luxsin-controller/index.vue"),
|
|
|
|
|
upgrade_blacklist: () => import("@/views/upgrade/blacklist/index.vue"),
|
|
|
|
|
"upgrade_ota-target-device": () => import("@/views/upgrade/ota-target-device/index.vue"),
|
|
|
|
|
upgrade_ota: () => import("@/views/upgrade/ota/index.vue"),
|
2026-07-30 18:27:42 +08:00
|
|
|
www_contact_settings: () => import("@/views/www/contact/settings/index.vue"),
|
|
|
|
|
www_contact_submissions: () => import("@/views/www/contact/submissions/index.vue"),
|
|
|
|
|
www_global_basic: () => import("@/views/www/global/basic/index.vue"),
|
|
|
|
|
www_global_footer: () => import("@/views/www/global/footer/index.vue"),
|
|
|
|
|
www_global_seo: () => import("@/views/www/global/seo/index.vue"),
|
|
|
|
|
www_global_social: () => import("@/views/www/global/social/index.vue"),
|
|
|
|
|
www_i18n: () => import("@/views/www/i18n/index.vue"),
|
|
|
|
|
www_media: () => import("@/views/www/media/index.vue"),
|
|
|
|
|
www_nav_appearance: () => import("@/views/www/nav/appearance/index.vue"),
|
|
|
|
|
www_nav_items: () => import("@/views/www/nav/items/index.vue"),
|
|
|
|
|
www_news_articles: () => import("@/views/www/news/articles/index.vue"),
|
|
|
|
|
"www_page-seo": () => import("@/views/www/page-seo/index.vue"),
|
|
|
|
|
www_page_about: () => import("@/views/www/page/about/index.vue"),
|
|
|
|
|
www_page_home: () => import("@/views/www/page/home/index.vue"),
|
|
|
|
|
"www_page_news-list": () => import("@/views/www/page/news-list/index.vue"),
|
|
|
|
|
"www_page_product-list": () => import("@/views/www/page/product-list/index.vue"),
|
|
|
|
|
www_page_support: () => import("@/views/www/page/support/index.vue"),
|
2026-08-13 16:48:05 +08:00
|
|
|
www_product_detail: () => import("@/views/www/product/detail/index.vue"),
|
2026-07-30 18:27:42 +08:00
|
|
|
www_product_list: () => import("@/views/www/product/list/index.vue"),
|
|
|
|
|
www_product_series: () => import("@/views/www/product/series/index.vue"),
|
2026-08-20 16:42:01 +08:00
|
|
|
www_support_feedbacks: () => import("@/views/www/support/feedbacks/index.vue"),
|
2026-07-30 11:23:50 +08:00
|
|
|
};
|