You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
28 lines
535 B
28 lines
535 B
import { $t } from "/@/plugins/i18n";
|
|
import Layout from "/@/layout/index.vue";
|
|
|
|
const externalLink = {
|
|
path: "/external",
|
|
name: "external",
|
|
component: Layout,
|
|
meta: {
|
|
icon: "Link",
|
|
title: $t("menus.externalLink"),
|
|
showLink: true,
|
|
i18n: true,
|
|
rank: 190
|
|
},
|
|
children: [
|
|
{
|
|
path: "https://github.com/xiaoxian521/vue-pure-admin",
|
|
meta: {
|
|
title: $t("menus.externalLink"),
|
|
showLink: true,
|
|
i18n: true,
|
|
rank: 191
|
|
}
|
|
}
|
|
]
|
|
};
|
|
|
|
export default externalLink;
|