dj 4c60486511 feat(computed): 添加计算属性功能实现
- 实现了 ComputedRefImpl 类来管理计算属性
- 添加了 computed 函数用于创建计算属性
- 在 ReactiveEffect 中添加 computed 属性引用
- 将 computed 导出到 reactivity 和 vue 主包
- 添加了 isFunction 工具函数判断函数类型
- 创建了计算属性的 HTML 示例文件进行演示
2026-02-08 15:19:49 +08:00
2026-02-02 18:07:30 +08:00
2026-02-02 18:07:30 +08:00

.prettierrc

{
"semi": false,// 结尾无分号
"singleQuote": true,// 单引号
"printWidth": 80,// 每行长度为80
"trailingComma": "none",// 不添加尾随逗号
"arrowParens": "avoid"// 省略箭头函数的括号
}
Description
自搭vue3源码mini框架 3.2.37
Readme 109 KiB
Languages
TypeScript 58.4%
HTML 36.9%
JavaScript 4.7%