如何在qiankun 基座中禁用掉子应用 根据router配置的name修改了document.title的能力 #12174
sdmu-gaoqi
started this conversation in
General
Replies: 1 comment
-
使用了 max 自带的 layout 菜单就会自动更改页面名字,你在子应用使用了 layout 的菜单吗? 可以通过 配置参考: // src/app.ts
export const layout = () => {
return {
pageTitleRender: (...) => {
return '你的标题'
}
};
}; |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
在基座中无法获取子应用的router进行 更新 如何在基座中配置禁止子应用运行时根据route 的name动态修改title
Beta Was this translation helpful? Give feedback.
All reactions