在用uni-app,在页面中循环组件并传递下标。
其他问答
1
在组件中的js代码‘transmitIndex’是我的点击事件。index传过来就是父页面循环产生的下标
data() {
return {
transmitIndexInfo: -1,
};
},
props: ['item','index'],
methods:{
transmitIndex() {
this.transmitIndexInfo = this.index;
console.log(this.transmitIndexInfo == this.idnex);
}
}
发表回复