Alfred-Skyblue / vue-draggable-plus

Universal Drag-and-Drop Component Supporting both Vue 3 and Vue 2
https://vue-draggable-plus.pages.dev/en/
MIT License
2.74k stars 105 forks source link

在火狐浏览器中拖拽完成后会打开搜索页面 #35

Closed Pandaft closed 11 months ago

Pandaft commented 11 months ago

见动图:

gif

在 Chrome 、 Edge 浏览器上没有该问题。

Alfred-Skyblue commented 11 months ago

在火狐浏览器中可以使用以下方式阻止打开搜索页的问题

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

建议把这段代码添加到全局

Pandaft commented 11 months ago

实测有效,感谢!