新建的默认uniapp项目,首页如果把image注释掉就会停留在转圈圈的阶段大概6秒。如果不注释掉则会很快,秒进。很费解,请大牛指点!!!
正常不转圈的代码:
<template>
<view>
<image class="logo" src="/static/logo.png"></image>
<view>
<text>{{title}}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>
转圈的代码:
<template>
<view>
<!-- <image class="logo" src="/static/logo.png"></image> -->
<view>
<text>{{title}}</text>
</view>
</view>
</template>
<script>
export default {
data() {
return {
title: 'Hello'
}
},
onLoad() {
},
methods: {
}
}
</script>
0 个回复