Files
lingji-work-fe/src/router/app-menus/index.ts

17 lines
329 B
TypeScript
Raw Normal View History

2025-06-16 14:42:26 +08:00
import { appRoutes, appExternalRoutes } from '../routes';
const mixinRoutes = [...appRoutes, ...appExternalRoutes];
const appClientMenus = mixinRoutes.map((el) => {
const { name, path, meta, redirect, children } = el;
return {
name,
path,
meta,
redirect,
children,
};
});
export default mixinRoutes;