From 018c41f513226d5b93503f246408f3bad6e6456d Mon Sep 17 00:00:00 2001 From: Dominik Pschenitschni Date: Sat, 2 Jul 2022 17:51:24 +0200 Subject: [PATCH] fix(password): watcher --- src/components/input/password.vue | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/components/input/password.vue b/src/components/input/password.vue index d32bae9c4..ceedfc753 100644 --- a/src/components/input/password.vue +++ b/src/components/input/password.vue @@ -45,7 +45,7 @@ const password = ref('') const isValid = ref(!props.validateInitially) watch( - props.validateInitially, + () => props.validateInitially, () => props.validateInitially && validate(), {immediate: true}, )