mind-map icon indicating copy to clipboard operation
mind-map copied to clipboard

`simple-mind-map` 的 `TouchEvent` 插件在移动端会拦截所有触摸事件,导致 UI 组件(如 Ant Design Vue 的 Select)不可用。

Open linkxzhou opened this issue 1 month ago • 0 comments

  • 原因:官方 TouchEvent 插件在 window 上绑定了 touchstart 等事件,且未判断事件目标是否在画布内。
  • 修复问题:
  // 手指移动事件
  onTouchmove(e) {
     // 修复:忽略外部事件
     if (!this.mindMap.el.contains(e.target)) {
        return
    }

    let len = e.touches.length
    // ....

linkxzhou avatar Dec 05 '25 10:12 linkxzhou