element button disabled属性问题

xjreopfe  于 4个月前  发布在  其他
关注(0)|答案(3)|浏览(103)

https://element.eleme.cn/#/zh-CN/component/button#attributes

如果按钮绑定事件;那么打开调试工具后删除对应的button的disabled属性;那么可以触发一些事件

8aqjt8rx

8aqjt8rx1#

一般用户不会移除 disabled 属性再去操作。
如果需要这个功能。可以修改如下代码。
button handleClick

handleClick(evt) {
     if(this.buttonDisabled){
        return;
      }
      this.$emit('click', evt);
}
l3zydbqr

l3zydbqr2#

是从这个地方修改,也是出于一些懂行的用户及安全考虑,建议添加。 在2020年06月08日 15:05,若川 写道: 一般用户不用为了移除disabled属性再去操作。 如果需要这个功能。可以修改如下代码。 button handleClick handleClick(evt){if(this.buttonDisabled){return;}this.$emit('click',evt);} — You are receiving this because you authored the thread. Reply to this email directly, view it on GitHub, or unsubscribe.

pexxcrt2

pexxcrt23#

This issue has been automatically marked as stale because it has not had recent activity. It will be closed if no further activity occurs. Thank you for your contributions.

相关问题