react-ant-admin icon indicating copy to clipboard operation
react-ant-admin copied to clipboard

router/utils. getPageTitle 问题

Open zwtgit opened this issue 5 years ago • 1 comments

export function getPageTitle(routeList: IRouteBase[]): string {
  const route = routeList.find(
    (child) => config.BASENAME + child.path === window.location.pathname
  );
  return route ? route.meta.title : "";
}

zwtgit avatar Jun 05 '20 07:06 zwtgit

添加config.BASENAME

zwtgit avatar Jun 05 '20 07:06 zwtgit