vue在data中调用methods中的方法

data在vue项目里实际也是个函数,所以只要如下操作就行:

data() {
let self = this  // 加上这一句就OK了
return {
    sum: self.count() // count是vue项目里methods中的函数
}

methods: {
  count() {
    returm 1+2
 }
}

猜你喜欢

转载自blog.csdn.net/weixin_43743175/article/details/127506638