|
|
@@ -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) {
|