diff --git a/docs/views/window/api/window.md b/docs/views/window/api/window.md index face00e3e..5c46bbffb 100644 --- a/docs/views/window/api/window.md +++ b/docs/views/window/api/window.md @@ -49,7 +49,7 @@ | ---- | ------- | ---- | | mousedown | clickedInfo | 드래그 및 리사이즈를 위한 mousedown 이벤트 감지 | | mousedown-mouseup | MouseEvent 객체 | 드래그 및 리사이즈를 위한 mouseup 이벤트 감지 | -| mousedown-mousemove | clickedInfo | 드래그 및 리사이즈를 위한 mousemove 이벤트 감지 | +| mousedown-mousemove | MouseEvent 객체 | 드래그 및 리사이즈를 위한 mousemove 이벤트 감지 | | resize | MouseEvent 객체, positionInfo | 리사이즈를 위한 mousemove 이벤트 감지 | ##### clickedInfo diff --git a/src/components/window/Window.vue b/src/components/window/Window.vue index 48c8ed5f9..43b2719ac 100644 --- a/src/components/window/Window.vue +++ b/src/components/window/Window.vue @@ -25,8 +25,8 @@ ...baseStyle, ...dragStyle, }" - @mousedown.prevent="startDrag" - @mousemove.prevent="moveMouse" + @mousedown="startDrag" + @mousemove="moveMouse" >