refactor: 修改登录页用户名密码

This commit is contained in:
xlsea 2024-05-15 22:37:41 +08:00
parent 0fd728cb5e
commit 5195b5e8e4

View File

@ -20,7 +20,7 @@ interface FormModel {
const model: FormModel = reactive({
userName: 'admin',
password: '654321'
password: 'admin'
});
type RuleKey = Extract<keyof FormModel, 'userName' | 'password'>;