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
/
Button
/
index.js
10 lines
(8 loc)
•
268 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
//This.is muf-ui botton component
import
MufButton
from
"./src/Button.vue"
;
//will muf-Button component inistall in whole Vue;
MufButton
.
install
=
function
(
Vue
) {
Vue
.
component
(
MufButton
.
name
,
MufButton
); };
//default componet;
export
default
MufButton
;