摘要: computed里的方法其实是默认使用了get方法例如 computed: { editData () { return this.value } } // 相当于 computed: { editData: { get () { return this.value } } } 如果对计算属性设置值 阅读全文