fix style && some warning

This commit is contained in:
2025-02-05 17:33:11 +08:00
parent 14191e4f1e
commit c0672f2487
5 changed files with 102 additions and 98 deletions

View File

@@ -61,7 +61,7 @@ import { useAuthStore } from 'stores/useAuthStore';
let email = ref('');
let password = ref('');
let visibility = ref(false);
let passwordFieldType = ref('password');
let passwordFieldType = ref<'text'|'password'>('password');
let visibilityIcon = ref('visibility');
const required = (val:string) => {
return (val && val.length > 0 || '必須項目')