Skip to content

observable

javascript
// 让一个对象变成响应式的
Vue.observable = function (obj) {
  observe(obj);
  return obj
}