随笔分类 - Vue3设计技术细节
摘要:1.组件的本质 定义:组件就是一组DOM元素的封装 const MyComponet=function (){ return { tag:'div', props:{ onClick:()=>alert('hello world') }, children:'click me' } } 然后我们用虚
阅读全文
摘要:1.虚拟DOM Vue3纯运行时:假设我们设计一个框架,提供了Render函数,用户可以为该函数提供树形结构数据对象,然后Render会将该对象递归的渲染成DOM元素。 const obj={ tag:'div', children:[ {tag:'span',children:'hello wor
阅读全文
浙公网安备 33010602011771号