mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-03 12:37:42 +08:00
23 lines
596 B
Vue
23 lines
596 B
Vue
import Vue from 'vue';
|
|
import Form from './Form';
|
|
import ref from 'vue-ref';
|
|
import FormDecoratorDirective from '../_util/FormDecoratorDirective';
|
|
import Base from '../base';
|
|
|
|
Vue.use(ref, { name: 'ant-ref' });
|
|
Vue.use(FormDecoratorDirective);
|
|
Vue.prototype.$form = Form;
|
|
|
|
export { FormProps, FormCreateOption, ValidationRule } from './Form';
|
|
export { FormItemProps } from './FormItem';
|
|
|
|
/* istanbul ignore next */
|
|
Form.install = function(Vue) {
|
|
Vue.use(Base);
|
|
Vue.component(Form.name, Form);
|
|
Vue.component(Form.Item.name, Form.Item);
|
|
Vue.prototype.$form = Form;
|
|
};
|
|
|
|
export default Form;
|