vue3微前端qiankun子应用作为主应用对接wujie子应用 iframe报错null:子应用加载被主应用中断

vue3微前端qiankun子应用作为主应用对接wujie子应用

iframe报错null:子应用加载被主应用中断

wujie-vue3版本

解决方案:

1.wujie降级处理degrade设为true

2.attrs设置属性src地址url,url为wujie主应用空白页地址

示例代码:

width="100%"
height="100%"
:sync="false"
:degrade="true"
:attrs="{src:'https://aaa/#/aa'}"
name="form"
:props="{ data: propsData }"
:url="mtUrl"
/>

注意:使用attrs时,degrade需要设为true

https://aaa/#/aa为wujie主应用空白页地址

你可能感兴趣的:(前端,javascript,node.js,vue.js)