fix: naive ui form reset does not meet expectations (#4569)

* fix: naive ui form reset does not meet expectations

* fix: typo
This commit is contained in:
Vben
2024-10-05 17:09:42 +08:00
committed by GitHub
parent 402eaf4275
commit d37e2f599c
13 changed files with 34 additions and 19 deletions

View File

@@ -3,8 +3,8 @@ import { baseRequestClient, requestClient } from '#/api/request';
export namespace AuthApi {
/** 登录接口参数 */
export interface LoginParams {
password: string;
username: string;
password?: string;
username?: string;
}
/** 登录接口返回值 */