vant/src/form/index.ts
2021-07-30 14:25:14 +08:00

9 lines
200 B
TypeScript

import { withInstall } from '../utils';
import _Form from './Form';
const Form = withInstall<typeof _Form>(_Form);
export default Form;
export { Form };
export type { FormInstance } from './types';