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