diff --git a/src/views/login/components/account/index.vue b/src/views/login/components/account/index.vue index 7247ff5..d50b534 100644 --- a/src/views/login/components/account/index.vue +++ b/src/views/login/components/account/index.vue @@ -9,10 +9,10 @@ @submit="handleLogin" > - + - + @@ -45,11 +45,12 @@ import { useAppStore, useTabsStore, useUserStore } from '@/stores' import { encryptByRsa } from '@/utils/encrypt' const loginConfig = useStorage('login-config', { - rememberMe: true, - username: 'admin', // 演示默认值 - password: 'admin123', // 演示默认值 - // username: debug ? 'admin' : '', // 演示默认值 - // password: debug ? 'admin123' : '', // 演示默认值 + // rememberMe: true, + // username: 'admin', // 演示默认值 + // password: 'admin123', // 演示默认值 + rememberMe: false, + username: '', + password: '', }) // 是否启用验证码 const isCaptchaEnabled = ref(true)