Element 单选框 el-radio-group 点击改变触发change事件

Element 单选框 el-radio-group 点击改变触发change事件_第1张图片
1.代码段

 
           
            
            
          
 

export default {
    data() {
        return {
          radioTreaty: '1',
          btnstatus:true,
        }
    },
    methods: {
        agreeChange:function(){
        let app = this;
        app.$refs["form"].clearValidate();
        //app.$refs.form.resetFields();
        app.form.end_date="";
      }
   },

2.v-if/else的使用

 
           
            
            
          
  

推荐阅读
https://blog.csdn.net/xfcy1990/article/details/90438549

你可能感兴趣的:(Element-ui)