vue中data使用this

2019-07-26  本文已影响0人  lesdom

思路

一般都是对象中的属性或者对象里的方法
在data中将对象设置为空,在created生命周期中再对此对象赋值

代码

data () {
  return {
    name: 'lee',
    option: {}
  }
},
created () {
  let that = this
  this.option = {
    name: that.name,
    getName: function () {
      that.getName()
    }
  }
},
methods: {
  getName () {
    console.log(this.name)
  }
}

网站导航

网站导航

上一篇 下一篇

猜你喜欢

热点阅读