直接调用会报错“XXX”is not defined
,
在调用函数需使用this.$options.methods.XXX(value)
.
ps:在使用上述代码后仍会报错,可以试试在函数内定义var_this = this
,再将调用的this
改为_this
。
methods中方法互相调用
最新推荐文章于 2023-05-31 15:29:30 发布
直接调用会报错“XXX”is not defined
,
在调用函数需使用this.$options.methods.XXX(value)
.
ps:在使用上述代码后仍会报错,可以试试在函数内定义var_this = this
,再将调用的this
改为_this
。