Vue calls methods in methods in data

data is actually a function in the vue project, so just do the following:

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

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

 

Guess you like

Origin blog.csdn.net/weixin_43743175/article/details/127506638