This commit is contained in:
Your Name
2026-03-05 11:19:36 +08:00
parent ab77f5488d
commit 9a1b67ca18
17 changed files with 1736 additions and 89 deletions
+2 -2
View File
@@ -126,11 +126,11 @@ const callInfo = ref<CallInfo>({
// 窗口位置和大小
const windowRef = ref<HTMLElement>()
const windowPosition = ref({ x: 100, y: 100 })
const windowSize = ref({ width: 800, height: 600 })
const windowSize = ref({ width: 300, height: 750 })
// 拖拽相关
const isDragging = ref(false)
const dragStart = ref({ x: 0, y: 0 })
const dragStart = ref({ x: 10, y: 0 })
// 调整大小相关
const isResizing = ref(false)