首页 > 其他分享 >application 'vueApp' died in status NOT_MOUNTED: [qiankun]: Target container with #vue not

application 'vueApp' died in status NOT_MOUNTED: [qiankun]: Target container with #vue not

时间:2023-09-13 13:23:17浏览次数:45  
标签:status existed vue container render app vueApp qiankun

这是第一次微前端很常见的提示,尤其是第一次写前端的时候碰到的

解决1:
主应用的  App.vue标签上的id="app"去掉,这是报错的根本
解决2:

// 在子应用挂在的时候处理
function render(props = {}) {
    const { container } = props;
    instance = new Vue({
        render: h => h(App),
    }).$mount(container ? container.querySelector('#app') : '#app');
}

缺点:子应用的css影响了主应用的,css不隔离

标签:status,existed,vue,container,render,app,vueApp,qiankun
From: https://www.cnblogs.com/heibaiqi/p/17699378.html

相关文章

  • BUG库(linux)tar文件解压: Exiting with failure status due to previous
    一.Bug场景描述linux下解压文件tar:Exitingwithfailurestatusduetopreviouserrors二.解决办法1.提升源权限chmod777 mysql-8.0.15-linux-glibc2.12-x86_64.tar.xz2.提升目标路径权限chmod-R777 mysql3.sudo执行  ......
  • 注册到K8S上的Nacos报错com.alibaba.nacos.api.exception.NacosException: Client not
    契机近期升级SpringCloudAlibaba版本,从2021.0.1.0升级到2021.0.5问题现象注册到K8S平台上2.1.2版本的Nacos报错,错误信息如下:2023-09-1309:29:53.712INFO19988—[main]c.a.n.p.a.s.c.ClientAuthPluginManager:ClientAuthPluginManagerLoadClientAuthServiceco......
  • grpc报错io.grpc.StatusRuntimeException: UNIMPLEMENTED: Service is unimplemented.
    如果被调用方的服务,proto文件上方定义了package,调用方不可以更改此路径!!!syntax="proto3";packagenucdl_FaceMatch;optionjava_multiple_files=true;optionjava_outer_classname="DLFaceProto";optionjava_package="com.nuctech.uranus.face.grpc"; ......
  • JSTL中forEach标签 varStatus属性值
    特性        Getter                     描述current   getCurrent()         当前这次迭代的(集合中的)项index      getIndex()              当前这次迭代从0开始的迭代索引count     getCount()......
  • 无法连接仓库:Command "git ls-remote -h -- https://gitee.com/xxx/xxxrned status co
    无法连接仓库:Command"gitls-remote-h--https://gitee.com/xxx/xxxrnedstatuscode128:stdout:stderr:remote:[session-554c92af]Usernamefor'https:Incorrectusernameorpassword(accesstoken)fatal:Authenticationfailedfor'http......
  • use @azure/arm-monitor sdk 遇见 ManagedIdentityCredential authentication failed.
    问题描述在使用@azure/arm-monitorsdk创建MonitorClient对象时候,遇见错误 ManagedIdentityCredentialauthenticationfailed.(statuscode500)CredentialUnavailableError:ERROR:AADSTS500011:Theresourceprincipalnamehttps://management.azure.comwasnotfoundi......
  • cmd下git status中文显示成八进制字符编码
    起因是在win11的cmd下提交了几个中文名称的文件,然后在使用gitstatus查看变化时,发现中文全变成了八进制字符编码,看着就很不爽:网上搜了下发现:在默认设置下,中文文件名在工作区状态就显示为八进制的字符编码。解决这个问题只需将git配置文件 core.quotepath项设置为false,quotepat......
  • DsReplicaGetInfo() failed with status 8453 (0x2105): Replication access was d
    Whenusingthe repadmin/showrepl commandtocheckreplicationhealthstatusonyourWindowsdomainenvironmentincommandpromptonSindowsServerendofresultyoumayseethefollowingerrormessage:DsReplicaGetInfo()failedwithstatus8453(0x2105):......
  • HTTP status code 408含义(转)
    原文:https://www.webfx.com/web-development/glossary/http-status-codes/what-is-a-408-status-code/Theserverdidnotreceiveacompleterequestmessagewithinthetimethatitwaspreparedtowait.AserverSHOULDsendthe“close”connectionoption1 inthe......
  • dimp V8:[WARNING]login fail, check your username and password, and check the serv
    在进行某个项目的性能测试时,我们选择了达梦8作为使用的数据库。前期是在一台功能测试环境的达梦数据库服务上创建用于压力测试的业务数据。后续将数据库导出,并导入一台专门做性能测试的高性能服务器(部署同样版本的达梦8),执行数据库文件导入操作时遇到了问题。以下是出现的错误......