2020-03-15 05:12:47 +00:00
|
|
|
import Form from './Form';
|
|
|
|
|
|
|
|
export { FormProps, ValidationRule } from './Form';
|
|
|
|
export { FormItemProps } from './FormItem';
|
|
|
|
|
|
|
|
/* istanbul ignore next */
|
2020-07-06 14:31:07 +00:00
|
|
|
Form.install = function(app) {
|
|
|
|
app.component(Form.name, Form);
|
|
|
|
app.component(Form.Item.name, Form.Item);
|
2020-03-15 05:12:47 +00:00
|
|
|
};
|
|
|
|
|
|
|
|
export default Form;
|