Browse Source

Reset default username and password fields in Login.vue for improved security and user experience

zq940222 3 months ago
parent
commit
8af0d53356
1 changed files with 2 additions and 2 deletions
  1. 2 2
      src/views/system/loginmini/Login.vue

+ 2 - 2
src/views/system/loginmini/Login.vue

@@ -132,8 +132,8 @@ const rememberMe = ref<string>('0');
 //账号登录表单字段
 const formData = reactive<any>({
   inputCode: '',
-  username: 'admin',
-  password: '123456',
+  username: '',
+  password: '',
 });
 const loginRef = ref();
 const loginLoading = ref<boolean>(false);