开发工具
环境:安卓移动端app
代码:
<u-button class="sys-button sys-button-tr" type="primary" @touchstart="touchstart"
@touchend='end'>
前进</u-button>
期望效果:点击按钮触发事件,按钮松开触发事件
参考 https://blog.csdn.net/qq_34403164/article/details/118931553
触发无效,请问是哪里写错了呢?
methods: {
//触摸事件开始
touchstart() {
console.log(111111111)
},
//触摸事件结束
end() {
console.log(22222)
}
}
1 个回复
p***@163.com (作者)
图片