mirror of
https://github.com/Comfy-Org/ComfyUI_frontend.git
synced 2026-02-21 15:24:09 +00:00
Merge branch 'main' into drjkl/lowered-expectations
This commit is contained in:
@@ -24,5 +24,13 @@ onMounted(() => {
|
||||
})
|
||||
</script>
|
||||
<template>
|
||||
<div ref="domEl" />
|
||||
<div
|
||||
ref="domEl"
|
||||
@pointerdown.stop
|
||||
@pointermove.stop
|
||||
@pointerup.stop
|
||||
@mousedown.stop
|
||||
@mousemove.stop
|
||||
@mouseup.stop
|
||||
/>
|
||||
</template>
|
||||
|
||||
@@ -104,9 +104,9 @@ function handleMove(e: PointerEvent) {
|
||||
<canvas
|
||||
ref="canvasEl"
|
||||
class="absolute w-full cursor-crosshair"
|
||||
@pointerdown="handleDown"
|
||||
@pointerup="handleUp"
|
||||
@pointermove="handleMove"
|
||||
@pointerdown.stop="handleDown"
|
||||
@pointerup.stop="handleUp"
|
||||
@pointermove.stop="handleMove"
|
||||
/>
|
||||
</div>
|
||||
</template>
|
||||
|
||||
Reference in New Issue
Block a user