From 15d3839c70dd815c54c29e2ddde30cb20966a01c Mon Sep 17 00:00:00 2001 From: wangrunpu <2095588299@qq.com> Date: Fri, 21 Nov 2025 16:35:56 +0800 Subject: [PATCH] init --- apps/web-antd/src/views/_core/authentication/login.vue | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/apps/web-antd/src/views/_core/authentication/login.vue b/apps/web-antd/src/views/_core/authentication/login.vue index 2d6325be..bbbee2f6 100644 --- a/apps/web-antd/src/views/_core/authentication/login.vue +++ b/apps/web-antd/src/views/_core/authentication/login.vue @@ -103,7 +103,7 @@ const formSchema = computed((): VbenFormSchema[] => { class: 'focus:border-primary', placeholder: $t('authentication.usernameTip'), }, - defaultValue: 'admin', + defaultValue: '', fieldName: 'username', label: $t('authentication.username'), rules: z.string().min(1, { message: $t('authentication.usernameTip') }), @@ -114,7 +114,7 @@ const formSchema = computed((): VbenFormSchema[] => { class: 'focus:border-primary', placeholder: $t('authentication.password'), }, - defaultValue: 'admin123', + defaultValue: '', fieldName: 'password', label: $t('authentication.password'), rules: z.string().min(5, { message: $t('authentication.passwordTip') }),