element-ui 点击单选框隐藏元素


      
        
        
      
 
 
      
 
export default {
	data() {
	  return {
	  		yes: '',
	     	no: '',
	     	temp: {
	     	id: undefined,
            hasUrl: '',
            url: ''
            }
        }
	},

    methods: {
	    handleUpdate(row) {
     		this.yes= '1'
      		this.no= '0'
      		//...
      	})
	 	},
	    handleCreate() {
		     this.yes= '1'
		     this.no= '0'
		     //...
	      })
	    },
	}
	
}

你可能感兴趣的:(vue)