一、报错信息
SyntaxError: The requested module '/src/apis/blackAccount/types.ts' does not provide an export named 'BlackAccountForm'
二、解决办法
尝试在import的时候将import {xxx} from 'xxx'改成import type {xxx} from 'xxx'
import type { BlackAccountForm, BlackAccountQuery } from "@/apis/blackAccount/types";
三、原因
Vite 中类型需要使用这个特殊的语法导入,主要用来导入和导出类型
https://www.typescriptlang.org/docs/handbook/release-notes/typescript-3-8.html