<text v-for="(item,index) in 3" :key="index">{{item}}</text>
- 发布:2023-07-21 15:18
- 更新:2023-07-21 16:18
- 阅读:400
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: 22H2
HBuilderX类型: 正式
HBuilderX版本号: 3.8.7
第三方开发者工具版本号: 1.06.2306281 RC
基础库版本号: 2.33.0
项目创建方式: HBuilderX
示例代码:
操作步骤:
vue3 运行到微信小程序
<text v-for="(item,index) in 3" :key="index">{{item}}</text>
vue3 运行到微信小程序
<text v-for="(item,index) in 3" :key="index">{{item}}</text>
预期结果:
012
012
实际结果:
123
123
bug描述:
vue3下的微信小程序中 v-for 循环数字,item从1开始
vue2下,item从0开始
vue3的文档说是在非h5平台,item从0开始,与实际不符