From e7206133421f25d92df9d7a43e6e9396c6adc0a9 Mon Sep 17 00:00:00 2001 From: haoxr <1490493387@qq.com> Date: Wed, 1 Mar 2023 00:55:41 +0800 Subject: [PATCH] =?UTF-8?q?fix:=20=E4=BF=AE=E6=94=B9=E7=99=BB=E5=BD=95?= =?UTF-8?q?=E6=95=B0=E6=8D=AE=E7=B1=BB=E5=9E=8B=E5=A3=B0=E6=98=8E?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Former-commit-id: e9ea4acaa8ebdf97f0227fd8ef4259ff7e1c092b --- src/views/login/index.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/login/index.vue b/src/views/login/index.vue index 91e79273..2963d15a 100644 --- a/src/views/login/index.vue +++ b/src/views/login/index.vue @@ -83,14 +83,14 @@ import { useUserStore } from '@/store/modules/user'; // API依赖 import { LocationQuery, LocationQueryValue, useRoute } from 'vue-router'; -import { ILoginData } from '@/api/auth/types'; +import { LoginData } from '@/api/auth/types'; const userStore = useUserStore(); const route = useRoute(); const loginFormRef = ref(ElForm); -const loginData = ref({ +const loginData = ref({ username: 'admin', password: '123456' });