1
0
mirror of synced 2026-03-24 03:38:34 +08:00

fix(editor): 拖动浮动窗口会导致窗口变大

This commit is contained in:
roymondchen
2024-03-15 17:14:56 +08:00
parent de1711d713
commit 42f1f28b02

View File

@@ -90,8 +90,6 @@ const initMoveable = () => {
});
moveable.on('drag', (e) => {
width.value = e.width;
height.value = e.height;
e.target.style.transform = e.transform;
});