Vue报错笔记(1)vue.esm.js?efeb:628 [Vue warn]: Property or method “handleClick“ is not defined on the...
报错代码:[Vue warn]: Property or method "handleClick" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based c
·
报错代码:
[Vue warn]: Property or method "handleClick" is not defined on the instance but referenced during render. Make sure that this property is reactive, either in the data option, or for class-based components, by initializing the property. See: https://vuejs.org/v2/guide/reactivity.html#Declaring-Reactive-Properties.
报错截图:
解决方法:
methods中没有定义handleClick的方法
methods: {
handleClick (tab, event) {
console.log(tab, event)
}
}
更多推荐
已为社区贡献3条内容
所有评论(0)