vue.js中用v-for遍历出的li中的@click事件在移动端无效
使用的better-scroll默认会阻止touch事件。所以在配置中需要加上click: truemounted () {this.scroll = new Bscroll(this.$refs.wrapper, { mouseWheel: true, click: true, tap: true })}...
·
使用的better-scroll默认会阻止touch事件。所以在配置中需要加上click: true
mounted () {
this.scroll = new Bscroll(this.$refs.wrapper, { mouseWheel: true, click: true, tap: true })
}
更多推荐
已为社区贡献2条内容
所有评论(0)