We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
原先vue2中采用 createMicroApp({ name: 'microApp', url: [ '/xxx/xxx.umd.js', '/css/index.css', ], container: appContainer, }) appHistory.push(‘/seller’,{},true) 可以跳转,移植到vue3+vite后跳转白屏,查看到js css文件是请求的,并插入到html中,但指定的元素内没有加载内容,
后尝试采用 registerMicroApps([ { name: 'microApp‘, activePath: '/seller', container: appContainer, url: [ '/xxx/xxx.umd.js', '/css/index.css', ], }, ]); start() 这种方式,但不请求js css两个文件,是我哪里配置不对吗
The text was updated successfully, but these errors were encountered:
关注 loadScriptMode 设置 https://micro-frontends.ice.work/docs/api/ice-stark/#loadscriptmode- vite 构建的产物需要用 import 的方式加载
Sorry, something went wrong.
No branches or pull requests
原先vue2中采用
createMicroApp({
name: 'microApp',
url: [
'/xxx/xxx.umd.js',
'/css/index.css',
],
container: appContainer,
})
appHistory.push(‘/seller’,{},true)
可以跳转,移植到vue3+vite后跳转白屏,查看到js css文件是请求的,并插入到html中,但指定的元素内没有加载内容,
后尝试采用
registerMicroApps([
{
name: 'microApp‘,
activePath: '/seller',
container: appContainer,
url: [
'/xxx/xxx.umd.js',
'/css/index.css',
],
},
]);
start()
这种方式,但不请求js css两个文件,是我哪里配置不对吗
The text was updated successfully, but these errors were encountered: