html中直接引入Vue时可能会出现未解析时的解决方案

<div id="app" style="display: flex; position: absolute; left: -6000px"></div>

在mounted中:

    let app_dom = document.getElementById("app");
    app_dom.style.left = 0;

相当于加载后再让app回到容器可视范围内

 

posted @ 2023-11-28 09:04  yw3692582  阅读(151)  评论(0编辑  收藏  举报