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
}
**粗体** _斜体_ [链接](http://example.com) `代码` - 列表 > 引用
。你还可以使用@
来通知其他用户。