mirror of
https://gitee.com/ElemeFE/element.git
synced 2024-12-03 12:48:45 +08:00
11 lines
253 B
JavaScript
11 lines
253 B
JavaScript
import ElFormItem from './src/form-item';
|
|
import ElForm from './src/form';
|
|
|
|
/* istanbul ignore next */
|
|
export default function(Vue) {
|
|
Vue.component(ElForm.name, ElForm);
|
|
Vue.component(ElFormItem.name, ElFormItem);
|
|
};
|
|
|
|
export { ElForm, ElFormItem };
|