mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 20:58:09 +08:00
9 lines
197 B
JavaScript
9 lines
197 B
JavaScript
const ElFormItem = require('../form/src/form-item');
|
|
|
|
/* istanbul ignore next */
|
|
ElFormItem.install = function(Vue) {
|
|
Vue.component(ElFormItem.name, ElFormItem);
|
|
};
|
|
|
|
module.exports = ElFormItem;
|