其他分享
首页 > 其他分享> > uniapp radio组件

uniapp radio组件

作者:互联网

 <template>
   <view class="uni-list-cell-left">
      <label class="radio">
             <radio value="r1" :checked="ischecked" color="#FFCC33" style="transform:scale(0.7);" @click="radio()"/>
       </label>
       <text class="xieyi">我已阅读并同意用户协议、隐私协议</text>
    </view>
 </template>
  export default {
       data() {
            return {
          ischecked:false,
          }
        },
        methods: {
            radio(){
                this.ischecked = !this.ischecked
            },
      }
  }        

 

标签:uniapp,return,methods,default,ischecked,radio,组件
来源: https://www.cnblogs.com/hi-wah/p/15352861.html