react-ant-admin
react-ant-admin copied to clipboard
router/utils. getPageTitle 问题
export function getPageTitle(routeList: IRouteBase[]): string {
const route = routeList.find(
(child) => config.BASENAME + child.path === window.location.pathname
);
return route ? route.meta.title : "";
}
添加config.BASENAME