需求:输入框有内容时,按钮启用,没内容时按钮禁用
<el-input v-model="content"></el-input>
<el-button :disabled="addOrSaveCommentShow" type="primary" @click="addOrSaveComment">发 表</el-button>
data() {
return {
addOrSaveCommentShow:true,
}
},
watch: {
content(newName, oldName) {
if(newName){
this.addOrSaveCommentShow = false;
}else{
this.addOrSaveCommentShow = true;
}
}
},