04-10补充:
为此准备了一段简单的代码进行测试: hometest.vue
<template>
<view>
<view class="cu-list grid col-3 text-sm">
<block v-for="(item,index) in testList" :key="item.id">
<view>{{item.testStr}}</view>
</block>
</view>
</view>
</template>
<script>
export default {
data() {
return {
testList: [{
id: 1,
testStr: '1'
},
{
id: 2,
testStr: '2'
},
]
}
},
methods: {
}
}
</script>
<style>
</style>
支付宝小程序中没有被渲染