kujian/daily-interview-question

剖析Vue实现原理 - 如何实现双向绑定mvvm

kujian opened this issue · 1 comments

  1. Vue 2.x 使用 ES5 Object.defineProperty, 监听数据 get和 set, 实现数据劫持
  2. Vue 3.x 使用 ES6 Proxy 实现双向数据绑定