index.js 172 B

12345678
  1. const ElInput = require('./src/input');
  2. /* istanbul ignore next */
  3. ElInput.install = function(Vue) {
  4. Vue.component(ElInput.name, ElInput);
  5. };
  6. module.exports = ElInput;