<template>
<view>
<view>Test</view>
<template v-if="nextStepLength&&nextStep[nextStepIndex].operator">
<view v-for="(item,index) in nextStep[nextStepIndex].operator" :key="index" :class="{active:nextStepUserIndexs.includes(index)}">
{{index}}
</view>
</template>
</view>
</template>
<script>
export default {
name: 'test',
data() {
return {
nextStepIndex: 0,
nextStepUserIndexs: [0],
nextStep: [] // nextStep: [ {operator: []} ]
}
},
computed: {
nextStepLength () {
return this.nextStep.length;
}
}
}
</script>
- 发布:2020-07-10 14:36
- 更新:2020-07-11 14:14
- 阅读:820
产品分类: uniapp/小程序/微信
PC开发环境操作系统: Windows
PC开发环境操作系统版本号: win 10
HBuilderX类型: 正式
HBuilderX版本号: 2.7.14
第三方开发者工具版本号: 1.02.1910120
基础库版本号: 2.12.0
项目创建方式: HBuilderX
示例代码:
操作步骤:
运行以上代码即可
运行以上代码即可
预期结果:
不应该报错
不应该报错
实际结果:
报错了
报错了
内心油腻 (作者)
测试了没有效果
2020-07-10 15:00