ant-design-vue/components/form/index.jsx

13 lines
286 B
Vue
Raw Normal View History

2019-01-12 03:33:27 +00:00
import Form from './Form';
2018-05-15 02:08:14 +00:00
2020-07-28 09:10:06 +00:00
export { FormProps, ValidationRule } from './Form';
2019-01-12 03:33:27 +00:00
export { FormItemProps } from './FormItem';
2018-05-05 09:00:51 +00:00
/* istanbul ignore next */
2020-07-28 09:10:06 +00:00
Form.install = function(app) {
app.component(Form.name, Form);
app.component(Form.Item.name, Form.Item);
2019-01-12 03:33:27 +00:00
};
2019-01-12 03:33:27 +00:00
export default Form;