We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1b740b4 commit 330a3b7Copy full SHA for 330a3b7
packages/core/src/components/Handle/Handle.vue
@@ -101,7 +101,7 @@ export default {
101
},
102
]"
103
@mousedown="handlePointerDown"
104
- @touchstart="handlePointerDown"
+ @touchstart.passive="handlePointerDown"
105
@click="handleClick"
106
>
107
<slot :id="id" />
packages/core/src/container/Pane/Pane.vue
@@ -227,7 +227,7 @@ export default {
227
:class="[{ selection: isSelecting }]"
228
@click="onClick"
229
@contextmenu="onContextMenu"
230
- @wheel="onWheel"
+ @wheel.passive="onWheel"
231
@mouseenter="onMouseEnter"
232
@mousedown="onMouseDown"
233
@mousemove="onMouseMove"
0 commit comments