feat(runtime-core): 添加 Vue 渲染器和 h 函数实现

- 实现了 render 函数用于 Vue 组件渲染
- 实现了 h 函数用于创建虚拟节点(VNode)
- 添加类型定义和相关工具函数
This commit is contained in:
zzy
2026-05-02 16:34:48 +08:00
parent 35b4b22093
commit 5760d63c3a
3 changed files with 158 additions and 0 deletions

View File

@@ -1,4 +1,8 @@
render in vue ./packages/runtime-core/src/renderer.ts
h in vue ./packages/runtime-core/src/h.ts
- stage00 纯html
- stage01 命令式 DOM
- stage02 声明式渲染