element/packages/input/index.js

9 lines
172 B
JavaScript
Raw Normal View History

2016-07-27 14:15:02 +08:00
const ElInput = require('./src/input');
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
2016-07-27 14:15:02 +08:00
ElInput.install = function(Vue) {
Vue.component(ElInput.name, ElInput);
};
module.exports = ElInput;