vue实现标签的双向选择

实现的效果如下:

未选择时:

 选择一个或者多选时

 取消选择时

 具体代码如下

<template>
  <div class="tagBox">
    <div class="tagBox_tabBoxL">
      <span
        :class="[{ active: checkedGroup.indexOf(index) > -1 }]"
        :key="item.id || index"
        v-for="(item,index) in saveTagList"
        @click="changeTagList(item.id,index)"
      >{{item.name}}</span> 
    </div>
  </div>
</template>

<script>
export default {
  name: "App",
  data() {
    return {
      checkedGroup: [],
      saveTagList: [
        { id: 1, name: "苹果" },
        { id: 2, name: "葡萄" },
        { id: 2, name: "雪梨" },

        { id: 2, name: "西瓜" },

      ],
    };
  },
  methods: {
    changeTagList(id,index){
      if(this.checkedGroup.indexOf(index) == -1){
        this.checkedGroup.push(index)
      }else{
        let spliceIndex = this.checkedGroup.indexOf(index);
        this.checkedGroup.splice(spliceIndex,1)
      }
    }
  },
};
</script>

<style scoped>
.tagBox{
  margin: 0 15px;
  display: flex;
  align-items: center;
  justify-content: flex-start;
  font-size: 14px;
  line-height: 16px;
  padding-bottom: 10px;
}
.tagBox_tabBoxL{
  flex: 1;
  display: flex;
  flex-wrap: wrap;
  overflow: auto;
}
span{
  margin-right: 10px;
  color: #111;
  background: #fff;
  white-space: nowrap;
  border-right: 5px;
  border: 1px solid #ccc;
  padding: 2px 8px;
}
span.active{
  font-size: 14px;
  border: 1px solid #FF9600;
  color:#FF9600 ;
}
</style>

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值