mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 04:39:09 +08:00
9 lines
172 B
JavaScript
9 lines
172 B
JavaScript
const ElInput = require('./src/input');
|
|
|
|
/* istanbul ignore next */
|
|
ElInput.install = function(Vue) {
|
|
Vue.component(ElInput.name, ElInput);
|
|
};
|
|
|
|
module.exports = ElInput;
|