weex 中出现 loading无法关闭
如题使用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;
}