UNPKG
tc-directive-plus
Version:
latest (0.3.1)
0.3.1
0.3.0
0.2.1
0.1.1
0.1.0
一个基于Vue3.x较为常用的自定义指令库
tc-directive-plus
/
src
/
Utils
/
index.ts
15 lines
(9 loc)
•
232 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
import
unit
from
"./layout/index"
;
import
common
from
"./common/index"
;
const
utils = {};
const
objArr = [unit, common]; objArr.
forEach
(
(
el
) =>
{
Object
.
assign
(utils, el); });
export
{ unit, common };
export
default
utils;