import { $t } from "@/plugins/i18n"; const Layout = () => import("@/layout/index.vue"); export default [ { path: "/login", name: "Login", component: () => import("@/views/login/index.vue"), meta: { title: $t("menus.hslogin"), showLink: false, rank: 101 } }, { path: "/redirect", component: Layout, meta: { icon: "homeFilled", title: $t("menus.hshome"), showLink: false, rank: 102 }, children: [ { path: "/redirect/:path(.*)", name: "Redirect", component: () => import("@/layout/redirect.vue") } ] } ] as Array;