mirror of https://github.com/ElemeFE/element
10 lines
246 B
JavaScript
10 lines
246 B
JavaScript
![]() |
const ElInput = require('./src/input');
|
||
|
const ElInputGroup = require('./src/input-group');
|
||
|
|
||
|
ElInput.install = function(Vue) {
|
||
|
Vue.component(ElInput.name, ElInput);
|
||
|
Vue.component(ElInputGroup.name, ElInputGroup);
|
||
|
};
|
||
|
|
||
|
module.exports = ElInput;
|