UNPKG
@allo_shuang/modal
Version:
latest (1.0.9)
1.0.9
1.0.8
1.0.7
1.0.6
1.0.5
1.0.4
1.0.3
1.0.2
1.0.1
1.0.0
0.0.6
0.0.5
0.0.4
0.0.3
0.0.2
0.0.1
统一弹窗组件。用于规范项目弹窗管理的架构及使用。减少手动操作及心智成本。UI组件库使用Element-UI。
@allo_shuang/modal
/
index.js
13 lines
(8 loc)
•
213 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
import
init
from
'./init'
const
install =
function
(
Vue, opts = {}
) {
const
files =
require
.
context
(
'@/modal/'
,
true
,
/\.\/([^/]*)\/index\.vue$/
,
'lazy'
)
init
(files,
Vue
,opts) }
export
default
{ install }