随笔分类 - vue2
vue2响应式,computed, watch 简单实现
摘要:reactive.js 相当于Observe import Dep from './dep'; // 简单实现 默认传入的都是对象(假装typeof 出来的都是对象 没有数组) export function reactive(data){ if(typeof data 'object'){ Obj
阅读全文