review:同步 vue5 官方的差异

This commit is contained in:
YunaiV
2025-09-01 22:24:15 +08:00
parent 0f0ae5de48
commit 4062bb03fb
23 changed files with 36 additions and 1088 deletions

View File

@@ -1,3 +1,4 @@
// TODO @xingyu要不要抽到 package 里?
/**
* 将值复制到目标对象且以目标对象属性为准target: {a:1} source:{a:2,b:3} 结果为:{a:2}
* @param target 目标对象

View File

@@ -1,3 +1,4 @@
// TODO @xingyu要不要融合到 /packages/@core/base/shared/src/utils/time.ts 里?
/**
* 将毫秒转换成时间字符串。例如说xx 分钟
*

View File

@@ -1,4 +1,5 @@
// 参数校验,对标 Hutool 的 Validator 工具类
// TODO @xingyu要不要抽到 package 里?
/** 手机号正则表达式(中国) */
const MOBILE_REGEX = /(?:0|86|\+86)?1[3-9]\d{9}/;