摘要: new Vue({ el: '.app', data: { foo: 'test', }, computed: { _foo: { set: function(value) { this.foo = value; }, get: function() { return this.foo } } } 阅读全文
posted @ 2017-02-23 10:13 清新剂 阅读(425) 评论(0) 推荐(0) 编辑