这篇文章主要介绍了vue怎么实现动态的选中状态切换效果的相关知识,内容详细易懂,操作简单快捷,具有一定借鉴价值,相信大家阅读完这篇vue怎么实现动态的选中状态切换效果文章都会有所收获,下面我们一起来看看吧。
HTML中的内容为以下。
<ul class="list"> <li v-for="(item,index) in liList" v-on:click="addClass(index)" v-bind:class="{ ischeck:index==current}">{{item.title}}</li> </ul>
JS中的内容为以下。
data () { return { current:0, liList:[ {title:'中国'}, {title:'美国'}, {title:'英国'}, {title:'法国'} ] } }, methods:{ addClass:function(index){ this.current=index } }
CSS中的内容如下。
.ischeck { background: #e6e6e6; height: 30px; width: 50px; line-height: 0px; padding: 15px 10px; }
第一种方法
<el-table-column prop="sfgh" label="是否归还" align="center"> <template scope="scope"> <p v-if="scope.row.sfgh=='0'"> <el-button href="javascript:void(0)" @click="getWzghInfo(scope.$index, scope.row)">已归还</el-button> </p> <p v-if="scope.row.sfgh=='1'">未归还</p> <p v-if="scope.row.sfgh=='2'">未还清</p> </template> </el-table-column>
第二种方法
使用formatter来实现
代码如下:
<el-table-column label="状态" :formatter="statusFormat"> </el-table-column> methods: { statusFormat: function(row, column) { let status = row.status; let statusW = "未缴费"; if(status == undefined) { statusW = "未缴费"; } switch(status) { case 1: statusW = "已缴费"; break; case 2: statusW = "退款申请中"; break; } return statusW; } }
关于“vue怎么实现动态的选中状态切换效果”这篇文章的内容就介绍到这里,感谢各位的阅读!相信大家对“vue怎么实现动态的选中状态切换效果”知识都有一定的了解,大家如果还想学习更多知识,欢迎关注亿速云行业资讯频道。
免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。