美文网首页
vue中data使用this

vue中data使用this

作者: lesdom | 来源:发表于2019-07-26 18:46 被阅读0次

    思路

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

    网站导航

    网站导航

    相关文章

      网友评论

          本文标题:vue中data使用this

          本文链接:https://www.haomeiwen.com/subject/hawdrctx.html