We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8ef92a commit 7fff32fCopy full SHA for 7fff32f
src/app/components/form/account/FormAccountSignIn.vue
@@ -81,9 +81,9 @@ const localePath = useLocalePath()
81
82
// data
83
const form = reactive({
84
- captcha: '',
85
- password: '',
86
- usernameOrEmail: '',
+ captcha: ref<string>(),
+ password: ref<string>(),
+ usernameOrEmail: ref<string>(),
87
})
88
const isFormSent = ref(false)
89
src/app/components/form/input/FormInputEmailUsername.vue
@@ -46,7 +46,6 @@
46
import type { BaseValidation } from '@vuelidate/core'
47
import { email } from '@vuelidate/validators'
48
import { VALIDATION_FORMAT_SLUG } from '~/utils/validation'
49
-import { computed } from 'vue'
50
51
const {
52
formInput,
0 commit comments