vue3
文章平均质量分 52
Api工程师~
这个作者很懒,什么都没留下…
展开
-
js实现shallowReactive和reactive
// shallowReactive(浅的监视,浅的劫持,浅的响应式数据)与reactive(深的) // 定义一个reactiveHandler处理对象 let reactiveHandler = { // 获取属性值 get(target, prop) { // 这里的result返回1 const result = Reflect.get(target, prop) console.log('拦截到get', prop, result) return resu原创 2021-07-06 16:35:42 · 545 阅读 · 0 评论 -
初识vue3
对vue3的理解 2020年9月发布的正式版 vue3支持大多数的Vue2的特性 Vue中设计了一套强大的组合APi代替了Vue2中的option API,复用性更强了 更好的支持TS 最主要:Vue3中使用了Proxy配合Reflect代替了Vue2中Object.defineProperty()方法实现数据的响应式(数据代理) 重写了虚拟DOM,速度更快了 新的组件:Fragment(片段)/ Teleport(瞬移) / Suspense(不确定) 设计了一个新的脚手架工具,vite vue3为什原创 2021-07-06 16:30:46 · 2678 阅读 · 0 评论