优化iframe中使用element,图片预览鼠标拖动到iframe之外释放,监听事件不能被注销

优化iframe中使用element,图片预览鼠标点击图片拖动到iframe之外释放鼠标,监听事件不能被注销,导致图片始终跟随鼠标无法取消。当前优化可以保证再次点击图片之后可以让图片不再跟随鼠标。
pull/21007/head
dying318 2021-05-15 17:19:26 +08:00 committed by GitHub
parent 17de41f3e2
commit 2a4d6d82d3
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -234,6 +234,7 @@ export default {
},
handleMouseDown(e) {
if (this.loading || e.button !== 0) return;
off(document, 'mousemove', this._dragHandler);
const { offsetX, offsetY } = this.transform;
const startX = e.pageX;