签名优化

This commit is contained in:
bb_pan 2025-08-29 11:44:03 +08:00
parent 1228bebe04
commit af7b61a290
1 changed files with 1 additions and 1 deletions

View File

@ -70,7 +70,6 @@ const touchstart = (e) => {
let startPoint = { X: startX, Y: startY }
points.push(startPoint)
canvaCtx.beginPath()
hasDrawn.value = true //
}
//
const touchmove = (e) => {
@ -80,6 +79,7 @@ const touchmove = (e) => {
points.push(movePoint)
if (points.length >= 2) {
draw()
hasDrawn.value = true //
}
}
//