element/packages/input/index.js

9 lines
165 B
JavaScript
Raw Normal View History

import ElInput from './src/input';
2016-07-27 06:15:02 +00:00
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-07-27 06:15:02 +00:00
ElInput.install = function(Vue) {
Vue.component(ElInput.name, ElInput);
};
export default ElInput;