阻止vue组件vuedraggable在使用时打开浏览器新页面

把以下代码 放在 created 或者是mounted里面

document.body.ondrop = function(event) {
  event.preventDefault()
  event.stopPropagation()
}

猜你喜欢

转载自blog.csdn.net/m0_52775179/article/details/144694271
今日推荐