From 7be0935e08816cffd46790055402e6799d591773 Mon Sep 17 00:00:00 2001 From: Arth <65160206@go.buu.ac.th> Date: Fri, 28 Mar 2025 08:24:55 +0700 Subject: [PATCH] fix login --- src/views/LoginView.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/views/LoginView.vue b/src/views/LoginView.vue index 97cfb9d..0f443b7 100644 --- a/src/views/LoginView.vue +++ b/src/views/LoginView.vue @@ -5,8 +5,8 @@ import type { VForm } from 'vuetify/components' const authStore = useAuthStore() const refForm = ref<VForm | null>(null) const form = ref(false) -const email = ref('Owner') -const password = ref('1111') +const email = ref('') +const password = ref('') const visible = ref(false) const required = (v: string) => { return !!v || 'Field is required' -- GitLab