You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
ant-design-vue/components/form/index.jsx

13 lines
286 B

import Form from './Form';
export { FormProps, ValidationRule } from './Form';
export { FormItemProps } from './FormItem';
7 years ago
/* istanbul ignore next */
Form.install = function(app) {
app.component(Form.name, Form);
app.component(Form.Item.name, Form.Item);
};
export default Form;