element/packages/form/index.js

9 lines
166 B
JavaScript
Raw Normal View History

2016-07-27 06:15:02 +00:00
const ElForm = require('./src/form');
2016-10-19 14:48:35 +00:00
/* istanbul ignore next */
2016-07-27 06:15:02 +00:00
ElForm.install = function(Vue) {
Vue.component(ElForm.name, ElForm);
};
module.exports = ElForm;