index.js 165 B

12345678
  1. import ElInput from './src/input';
  2. /* istanbul ignore next */
  3. ElInput.install = function(Vue) {
  4. Vue.component(ElInput.name, ElInput);
  5. };
  6. export default ElInput;