weex 中出现 loading无法关闭

2023-07-29,,

如题使用weex 搞个app 一安装就有一个bug

一直这里转!!!

找了半天原来是自己没按规定来,在index.vue中直接使用了rower

<template>
<router-view/>
</template>

改成这样就ok 了

<template>
<div class="wrapper">
<router-view/>
</div>
</template>

还有记得设置容器具体的宽高,不然屏幕会一片空白

    .main-container{
width: 750px;
height: 1334px;
}

weex 中出现 loading无法关闭的相关教程结束。

《weex 中出现 loading无法关闭.doc》

下载本文的Word格式文档,以方便收藏与打印。