更新了dockerfile

This commit is contained in:
2025-07-29 13:49:33 +08:00
parent f3b7a5aa62
commit ff2f21f145
3 changed files with 46 additions and 48 deletions

View File

@@ -3,25 +3,25 @@ const providers = ref([
{
label: 'Google',
icon: 'simple-icons-google',
color: 'neutral',
variant: 'subtle'
color: 'neutral' as const,
variant: 'subtle' as const
},
{
label: 'GitHub',
icon: 'simple-icons-github',
color: 'neutral',
variant: 'subtle'
color: 'neutral' as const,
variant: 'subtle' as const
}
])
const fields = ref([
{
name: 'email',
type: 'text',
type: 'text' as const,
label: 'Email'
},
{
name: 'password',
type: 'password',
type: 'password' as const,
label: 'Password'
}
])

View File

@@ -3,25 +3,25 @@ const providers = ref([
{
label: 'Google',
icon: 'simple-icons-google',
color: 'neutral',
variant: 'subtle'
color: 'neutral' as const,
variant: 'subtle' as const
},
{
label: 'GitHub',
icon: 'simple-icons-github',
color: 'neutral',
variant: 'subtle'
color: 'neutral' as const,
variant: 'subtle' as const
}
])
const fields = ref([
{
name: 'email',
type: 'text',
type: 'text' as const,
label: 'Email'
},
{
name: 'password',
type: 'password',
type: 'password' as const,
label: 'Password'
}
])