详细问题描述
微信小程序wxs文件添加事件并阻止冒泡报错
测试代码:
<template>
<view class="content" @touchstart.stop="swipe.touchstart">
微信小程序点击报错;H5正常运行;
</view>
</template>
<script module="swipe" lang="wxs">
function touchstart(e, ins) {
console.log(123465)
}
module.exports = {
touchstart: touchstart
}
</script>
IDE运行环境说明
[HBuilderX]
[2.6.11.20200409]
uni-app运行环境说明
[微信小程序]
[2.9.2]
[HBuilderX]
[v3模式]
联系方式
QQ:1209559047
2 个回复
j***@icloud.com
你好,是报这个错吗? Property or method "wxs模块名" is not defined on the instance but referenced during render
2***@qq.com
请问解决了吗