Merge pull request #70 from Tencent/feat/router/hidden

feat(router): add route hidden
This commit is contained in:
yuyang 2022-02-22 14:14:26 +08:00 committed by GitHub
commit 54c8a2824f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -6,7 +6,8 @@ const getMenuList = (list: MenuRoute[], basePath?: string): MenuRoute[] => {
if (!list) {
return [];
}
return list.map((item) => {
return list
.map((item) => {
const path = basePath ? `${basePath}/${item.path}` : item.path;
return {
path,
@ -16,7 +17,8 @@ const getMenuList = (list: MenuRoute[], basePath?: string): MenuRoute[] => {
meta: item.meta,
redirect: item.redirect,
};
});
})
.filter((item) => item.meta && item.meta.hidden !== true);
};
const renderIcon = (item) => {