const useForm = Form.useForm;
const { resetFields, validate, validateInfos } = useForm(this.infoPartData, checkRule);
比如上面的几个可以打开.d.ts文件,但是怎么在项目里使用声明这几个类型
const useForm = Form.useForm;
const { resetFields, validate, validateInfos } = useForm(this.infoPartData, checkRule);
比如上面的几个可以打开.d.ts文件,但是怎么在项目里使用声明这几个类型
正常的 import 引入就可以,比如
import type { Props } from "ant-design-vue/lib/form/useForm"