vue屏蔽点击事件

思路如果不能点击就 return false
例:

            submit() {
            	// 点击事件
                if (this.condition) {
                	// 屏蔽
                    return false
                }else {
                    // 事件处理
                }
            }

猜你喜欢

转载自blog.csdn.net/qq719756146/article/details/87968268