ChenYangfan 6 лет назад
Родитель
Сommit
728c23705f
1 измененных файлов с 0 добавлено и 1 удалено
  1. 0 1
      src/components/PDF/PointerCanvas.vue

+ 0 - 1
src/components/PDF/PointerCanvas.vue

@@ -63,7 +63,6 @@ export default {
     handleMouseMove (e) {
       if (this.pointerActive) {
         const { x, y } = this.points[this.points.length - 1] ?? { x: 0, y: 0 }
-        console.log(x, e.clientX)
         if (this.points.length === 0 || Math.abs(x - e.clientX) > 8 || Math.abs(y - e.clientY) > 8) {
           this.points.unshift({ x: e.clientX, y: e.clientY })
           if (this.points.length > 30) {