element/packages/form/_index.js

11 lines
253 B
JavaScript
Raw Normal View History

import ElFormItem from './src/form-item';
import ElForm from './src/form';
2016-10-13 17:51:14 +08:00
2016-10-19 22:48:35 +08:00
/* istanbul ignore next */
export default function(Vue) {
2016-10-13 17:51:14 +08:00
Vue.component(ElForm.name, ElForm);
Vue.component(ElFormItem.name, ElFormItem);
};
export { ElForm, ElFormItem };