【报Bug】nvue(uniapp模式) list组件绑定 @touchend事件居然触发了两遍 有一遍疑似 @touchstar
版本:2.3.5.20191018-alpha
代码如下:
<template>
<list @touchend="end" style="height: 750upx">
<cell>
<view style="width: 750upx;height: 650upx;background-color: red;">{{i}}</view>
</cell>
</list>
</template>
<script>
export default {
data(){
return {
i:0
}
},
methods: {
end(e){
console.log('end',this.i);
this.i++
}
}
}
</script>
raise (作者)
Android
2019-10-19 22:33
DCloud_UNI_GSQ
回复 raise: iOS是否正常?
2019-10-21 12:00