vue3源码阅读【runtime-core\src\component.ts】【setupComponent】
setupComponent 基于实例 instance, 对于 vnode.props 执行 initProps , 将 vnode.props上的属性 遍历后存在一个新的对象 props里面,然后存入 instance.props 基于实例 instance, 对于 vnode.children执行 initSlots, 将 vnode.children上的属性 遍历后存在一个新的对象 slo…