wepy中绑定点击事件报错,为什么一点按钮就报错?
![](https://image.wxopen.club/content_7168bf78-4f1b-11ea-9c3a-001a7dda7111.png)
<template>
<button @tap=“handleClick”>点击</button>
</template>
<srcipt>
wepy.page({
methods:{
handleClick(){
console.log(“aaa”);
}
}
})
</script>
<template>
<button @tap=“handleClick”>点击</button>
</template>
<srcipt>
wepy.page({
methods:{
handleClick(){
console.log(“aaa”);
}
}
})
</script>