UNPKG
@mir_king/common
Version:
latest (1.1.5)
1.1.5
1.1.4
1.1.3
1.1.2
1.1.1
1.1.0
1.0.2
1.0.1
1.0.0
提供开发中常用的工具函数,提升开发效率的库
@mir_king/common
/
utils
/
index.js
11 lines
(10 loc)
•
278 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
import
{ data }
from
'./data.js'
;
// 数据
import
{ form }
from
'./form.js'
;
// 表单
import
{ tools }
from
'./tools.js'
;
// 工具
import
{
Validation
}
from
'./Validation.js'
;
// 校验
export
const
common = { ...data, ...form, ...tools, ...
Validation
, };