vue版(2.6.12)
基座(主应用)中启动时
start({
prefetch: false,
sandbox: {
strictStyleIsolation: true, // 开启严格的样式隔离模式
experimentalStyleIsolation: true
}
})
子应用render时
// 把$mount('#app')中的#app换成
document.querySelector('#root-view').firstElementChild.shadowRoot.querySelector('#app')
注意: @keyframes, @font-face, @import, @page 将不被支持 (i.e. 不会被改写)
参考官网API
https://qiankun.umijs.org/zh/api
网友评论