umi项目antd pro ProLayout添加base或开启hash时菜单不能正常选中的解决方法

2023-08-25 13:20:10 浏览数 (1)

umi 项目使用 Ant Design Pro ProLayout 组件在添加 base 或开启 hash 时菜单不能正常选中。

解决方法:

传入 location 即可:

代码语言:javascript复制
const IndexPage: React.FC<BasicLayoutProps> = (props) => {
  const { location, children } = props;
  ...

  return (
  <ProLayout
    location={location}
    ...
  >
      {children}
    </ProLayout>
  );
};
export default IndexPage;

未经允许不得转载:w3h5-Web前端开发资源网 » umi项目antd pro ProLayout添加base或开启hash时菜单不能正常选中的解决方法

0 人点赞