UNPKG
muf-ui
Version:
latest (2.0.4)
2.0.4
2.0.3
2.0.2
2.0.1
2.0.0
MUF-UI,基于Vue的Web多样化组件库
muf-ui
/
components
/
Window
/
index.js
11 lines
(8 loc)
•
277 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
//This is muf-ui pop-up window component;
import
MufWindow
from
"./src/Window.vue"
;
//will muf-window component inistall in whole Vue;
MufWindow
.
install
=
function
(
Vue
){
Vue
.
component
(
MufWindow
.
name
,
MufWindow
); };
//default component;
export
default
MufWindow
;