让数据变得可观测我们都知道 Vue2 中是通过Object.defineProperty来实现的数据劫持,也就是让数据变得可观测 例如:
let car = {};
let val = 3000;
Object.defineProperty
2023-10-15