1. 程式人生 > 其它 >vue 移動端 click事件失效問題

vue 移動端 click事件失效問題

技術標籤:vue

可能是你使用了better-scroll,預設它會阻止touch事件。所以在配置中需要加上click: true

例:

import BScroll from 'better-scroll'
mounted() {
    this.scroll = new BScroll(this.$refs.search, {mouseWheel: true, click: true, tap: true })
  },