mirror of
https://github.com/pure-admin/pure-admin-thin.git
synced 2025-04-24 23:47:17 +08:00
26 lines
476 B
TypeScript
26 lines
476 B
TypeScript
import { $t } from "/@/plugins/i18n";
|
|
const Layout = () => import("/@/layout/index.vue");
|
|
|
|
const externalLink = {
|
|
path: "/externals",
|
|
component: Layout,
|
|
meta: {
|
|
icon: "link",
|
|
title: $t("menus.externalLink"),
|
|
i18n: true,
|
|
rank: 190
|
|
},
|
|
children: [
|
|
{
|
|
path: "/external",
|
|
name: "https://pure-admin-doc.vercel.app",
|
|
meta: {
|
|
title: $t("menus.externalLink"),
|
|
i18n: true
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default externalLink;
|