mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-04 13:17:47 +08:00
12 lines
274 B
JavaScript
12 lines
274 B
JavaScript
const ElFormItem = require('./src/form-item');
|
|
const ElForm = require('./src/form');
|
|
|
|
/* istanbul ignore next */
|
|
module.exports = function(Vue) {
|
|
Vue.component(ElForm.name, ElForm);
|
|
Vue.component(ElFormItem.name, ElFormItem);
|
|
};
|
|
|
|
exports = ElFormItem;
|
|
exports = ElForm;
|