Skip to content

Commit 7fff32f

Browse files
committed
refactor: imports
1 parent c8ef92a commit 7fff32f

File tree

2 files changed

+3
-4
lines changed

2 files changed

+3
-4
lines changed

src/app/components/form/account/FormAccountSignIn.vue

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -81,9 +81,9 @@ const localePath = useLocalePath()
8181
8282
// data
8383
const form = reactive({
84-
captcha: '',
85-
password: '',
86-
usernameOrEmail: '',
84+
captcha: ref<string>(),
85+
password: ref<string>(),
86+
usernameOrEmail: ref<string>(),
8787
})
8888
const isFormSent = ref(false)
8989

src/app/components/form/input/FormInputEmailUsername.vue

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,6 @@
4646
import type { BaseValidation } from '@vuelidate/core'
4747
import { email } from '@vuelidate/validators'
4848
import { VALIDATION_FORMAT_SLUG } from '~/utils/validation'
49-
import { computed } from 'vue'
5049
5150
const {
5251
formInput,

0 commit comments

Comments
 (0)