共计 274 个字符,预计需要花费 1 分钟才能阅读完成。
template
isValueExist 为计算属性
<el-button type="success" round :disabled="isValueExist"> 搜寻 </el-button>
script
只有三个 value 其中一个有值,就能够显示按钮
computed:
isValueExist() {
return this.$store.state.searchPage.aValue. ||
this.$store.state.searchPage.bValue ||
this.$store.state.searchPage.cValue ?
false : true
}
正文完
发表至: javascript
2022-04-03