mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 21:27:52 +08:00
9 lines
166 B
JavaScript
9 lines
166 B
JavaScript
const ElForm = require('./src/form');
|
|
|
|
/* istanbul ignore next */
|
|
ElForm.install = function(Vue) {
|
|
Vue.component(ElForm.name, ElForm);
|
|
};
|
|
|
|
module.exports = ElForm;
|