vue2实现自定义样式radio单选框

发布时间:2019-06-06 发布网站:脚本宝典
脚本宝典收集整理的这篇文章主要介绍了vue2实现自定义样式radio单选框脚本宝典觉得挺不错的,现在分享给大家,也给大家做个参考。

先上效果

效果

<div class="reply">
  主编已回复:
  <div class="radio-box" v-for="(item,index) in radios" :key="item.id">
    <span class="radio" :class="{'on':item.isChecked}"></span>
    <input v-model="radio" :value="item.value" class="input-radio" :checked='item.isChecked'  @click="check(index)" type="radio">{{item.label}}
  </div>
</div>

js:

data() {
  return {
    radio: '1',
    radios:[
      {
        label: '是',
        value:'1',
        isChecked: true,
      },
      {
        label: '否',
        value:'2',
        isChecked: false,
      },
      {
        label: '全部',
        value:'3',
        isChecked: false,
      },
    ]
  }
},
methods: {
  check(index) {
    // 先取消所有选中项
    this.radios.foreach((item) => {
      item.isChecked = false;
    });
    //再设置当前点击项选中
    this.radio = this.radios[index].value;
    // 设置值,以供传递
    this.radios[index].isChecked = true;
    console.log(this.radio);
  }
}

样式:

.radio-box{
  display: inline-block;
  position: relative;
  height: 25px;
  line-height: 25px;
  margin-right: 5px;
}
.radio {
  display: inline-block;
  width: 25px;
  height: 25px;
  vertical-align: middle;
  cursor: pointer;
  background-image: url(../../../common/images/radio.png);
  background-repeat: no-repeat;
  background-position: 0 0;
}
.input-radio {
  display: inline-block;
  position: absolute;
  opacity: 0;
  width: 25px;
  height: 25px;
  cursor: pointer;
  left: 0px;
  outline: none;
  -webkit-appearance: none;
}
.on {
  background-position: -25px 0;
}

脚本宝典总结

以上是脚本宝典为你收集整理的vue2实现自定义样式radio单选框全部内容,希望文章能够帮你解决vue2实现自定义样式radio单选框所遇到的问题。

如果觉得脚本宝典网站内容还不错,欢迎将脚本宝典推荐好友。

本图文内容来源于网友网络收集整理提供,作为学习参考使用,版权属于原作者。
如您有任何意见或建议可联系处理。小编QQ:384754419,请注明来意。