我在v-for里面循环生成route-link,想给他绑定一个事件,结果报错说事件未定义,下面是我的代码
-
method: {
total: function (index) {
console.log(index)
}
}
报错信息:
Property or method "total" is not defined on the instance but referenced during render. Make sure to declare reactive data properties in the data option.
Uncaught TypeError: _vm.total is not a function
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
是 methods
http://vuejs.org/v2/api/#methods
没有定义total这个方法,楼下正确