摘要: Vue实例挂载的实现 Vue中我们是通过$mount实例方法去挂载vm的,$mount方法在多个文件中都有定义,如src/platform/web/entry-runtime-with-compiler.js、src/platform/web/runtime/index.js、src/platfor 阅读全文
posted @ 2022-03-28 22:13 upupupupupgo 阅读(190) 评论(0) 推荐(0) 编辑
摘要: Object.defineProperty 作用 Object.defineProperty会直接在一个对象上定义一个新属性,或者修改一个对象的现有属性,并返回此对象。 const vm = { data: { a: 1 } } Object.defineProperty(vm, '_data', 阅读全文
posted @ 2022-03-28 21:10 upupupupupgo 阅读(12) 评论(0) 推荐(0) 编辑