You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
help_user/src/account/RegisterForm.tsx

12 lines
171 B

4 years ago
/**
*
*/
export interface RegisterForm {
//管理员名
user?:string;
//密码
password?:string;
//跳转登录
toLogin:Function;
}