在vue中如果想对卡片进行选中、设置等操作时,使用如下代码
v-for="(item,index) in address" v-bind:class="{'check':index==currentIndex}" @click="currentIndex=index"
new vue({el:'',data:{address:[],currentIndex:0}})
当点击卡片时对currentIndex赋值为当前卡片的index值并触发check样式的显示,否则的话,显示第一张卡片,既index为0的address数据
网友评论