wepy中绑定点击事件报错,为什么一点按钮就报错?
<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>