mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 17:31:43 +08:00
e1b51e9c78
* chore: update site * chore: update submodule * docs: update * docs: update doc * docs: update * test: update snap * docs: update * feat: add new form support v-model * feat: add new form * docs: update changelog * chore: update webpack * test: update snap
21 lines
520 B
Vue
21 lines
520 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);
|
|
|
|
export { FormProps, 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);
|
|
};
|
|
|
|
export default Form;
|