VUE 阻止冒泡事件 uploader 上传前校验


背景:希望在点击上传按钮时,先进行业务判断,是否允许上传。

方案:在uploader 内的buttom 元素上添加click事件 如果不允许则进行阻止冒泡事件

参考代码


<button v-on:click="warn('Form cannot be submitted yet.', $event)">

  Submit

</button>

 

// ...

methods: {

  warn: function (message, event) {

    // 现在我们可以访问原生事件对象

    if (event) event.preventDefault()

    alert(message)

  }

}

©小网格工作室 2013-2025