提交 5b6f9356 编写于 作者: 雪洛's avatar 雪洛

fix: 修复类型错误、格式化代码

上级 04f55315
...@@ -47,13 +47,13 @@ ...@@ -47,13 +47,13 @@
}, },
methods: { methods: {
onViewTouchStart(e : TouchEvent) { onViewTouchStart(e : TouchEvent) {
this.touchTargets += e.target?.tagName + e.currentTarget?.tagName this.touchTargets += e.target!.tagName + e.currentTarget!.tagName
this.touchTargetsCount++ this.touchTargetsCount++
console.log(this.touchTargets, this.touchTargetsCount) console.log(this.touchTargets, this.touchTargetsCount)
}, },
onTouchStart(e : TouchEvent) { onTouchStart(e : TouchEvent) {
this.touchTargetsCount++ this.touchTargetsCount++
this.touchTargets += e.target?.tagName + e.currentTarget?.tagName this.touchTargets += e.target!.tagName + e.currentTarget!.tagName
this.touchEvent = e this.touchEvent = e
if (!this.move) { if (!this.move) {
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册