mirror of
https://gitee.com/ant-design-vue/ant-design-vue.git
synced 2024-12-15 01:11:53 +08:00
13 lines
286 B
Vue
13 lines
286 B
Vue
import Form from './Form';
|
|
|
|
export { FormProps, ValidationRule } from './Form';
|
|
export { FormItemProps } from './FormItem';
|
|
|
|
/* istanbul ignore next */
|
|
Form.install = function(app) {
|
|
app.component(Form.name, Form);
|
|
app.component(Form.Item.name, Form.Item);
|
|
};
|
|
|
|
export default Form;
|