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.tsx

16 lines
328 B

import { App } from 'vue';
import Form from './Form';
export { FormProps } from './Form';
7 years ago
/* istanbul ignore next */
Form.install = function(app: App) {
app.component(Form.name, Form);
app.component(Form.Item.name, Form.Item);
return app;
};
export default Form as typeof Form & {
readonly Item: typeof Form.Item;
};