UNPKG
@jdlinker/ui
Version:
latest (3.2.5)
3.2.5
3.2.3
3.2.1
3.1.7
3.1.5
3.0.8
3.0.7
3.0.6
3.0.3
3.0.2
3.0.1
3.0.0
1.0.1
1.0.0
jdLinker UI库,基于ant-design-vue封装
@jdlinker/ui
/
src
/
form-render
/
container-item
/
index.ts
11 lines
(9 loc)
•
231 B
text/typescript
View Raw
1
2
3
4
5
6
7
8
9
10
11
const
modules =
import
.
meta
.
globEager
(
'./*.vue'
);
export
default
{
install
(
app
) {
for
(
const
path
in
modules) {
const
cname = modules[path].
default
.
name
; app.
component
(cname, modules[path].
default
); } } };