美文网首页
vue杂谈#1

vue杂谈#1

作者: 偷轮子的Dixin | 来源:发表于2018-09-08 14:06 被阅读0次

    在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数据

    相关文章

      网友评论

          本文标题:vue杂谈#1

          本文链接:https://www.haomeiwen.com/subject/jlgkgftx.html