增加可链接外部页面

This commit is contained in:
paulGao
2022-11-18 10:13:28 +08:00
parent 3861881996
commit b042bd6052
2 changed files with 36 additions and 1 deletions

View File

@@ -307,5 +307,14 @@ export const page500 = {
component: () => import("@/views/error-page/500.vue")
};
export const externalLink = {
path: "/external-link",
meta: {
title: "外部链接"
},
name: "external-link",
component: () => import("@/views/external-link/index.vue")
};
// 所有上面定义的路由都要写在下面的routers里
export const routers = [loginRouter, otherRouter, page500, page403];
export const routers = [loginRouter, otherRouter, page500, page403, externalLink];