index.js 145 B

1234567
  1. const ElInput = require('./src/input');
  2. ElInput.install = function(Vue) {
  3. Vue.component(ElInput.name, ElInput);
  4. };
  5. module.exports = ElInput;