码迷,mamicode.com
首页 > 其他好文 > 详细

vue里computed的set和get方法

时间:2020-04-09 18:02:05      阅读:116      评论:0      收藏:0      [点我收藏+]

标签:设置   计算属性   pre   code   value   options   option   data   inpu   

computed里的方法其实是默认使用了get方法
例如

computed: {
    editData () {
        return this.value
    }
}
// 相当于
computed: {
    editData: {
      get () {
        return this.value
      }
    }
}

如果对计算属性设置值,就会调用计算属性的set方法

computed: {
    editData: {
      get () {
        return this.value
      },
      set (v) {
        this.$emit(‘input‘, v)
      }
    }
 }
// 如果改变editData的值this.$set(this.editData, ‘fieldOptions‘, _editData)就会触发set方法里的this.$emit(‘input‘, v)

 

vue里computed的set和get方法

标签:设置   计算属性   pre   code   value   options   option   data   inpu   

原文地址:https://www.cnblogs.com/zhujunislucky/p/12668451.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!