思路
一般都是对象中的属性或者对象里的方法
在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)
}
}
网友评论