vue绑定事件时候使用三元表达式

如果使用三元表达式,方法要加括号,如果不使用三元表达式,方法则可以不加括号


<el-button @click.native="isCreate ? '' : handleAdd()">新增el-button>

<el-button @click="handleAdd">新增el-button>
<button @mousedown="editable?change:''">change</button>

==>
@mousedown="() => editable ? change() : otherMethod()"

你可能感兴趣的:(vue)