15 lines
347 B
TypeScript
15 lines
347 B
TypeScript
import { withInstall } from '../utils';
|
|
import _Form, { FormProps } from './Form';
|
|
|
|
export const Form = withInstall(_Form);
|
|
export default Form;
|
|
export { formProps } from './Form';
|
|
export type { FormProps };
|
|
export type { FormInstance } from './types';
|
|
|
|
declare module 'vue' {
|
|
export interface GlobalComponents {
|
|
VanForm: typeof Form;
|
|
}
|
|
}
|