index.js 159 B

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