From 312536f66dfc5252ba15fbe55087ae269877cdd4 Mon Sep 17 00:00:00 2001
From: Helianthella
Date: Tue, 22 Dec 2020 10:22:57 -0500
Subject: fix registration and account recovery
MIME-Version: 1.0
Content-Type: text/plain; charset=UTF-8
Content-Transfer-Encoding: 8bit
On Vue 3, ref names and v-model names are both assigned to the scope of the component,
unlike in Vue 2, where refs were only registered on vm.$refs. This means if you
have a the ref will override the model and thus
the model will not work. This is, of course, undocumented in the migration guide 🙄
---
src/views/AccountRecovery.vue | 22 +++++++++++-----------
src/views/Registration.vue | 18 +++++++++---------
2 files changed, 20 insertions(+), 20 deletions(-)
(limited to 'src')
diff --git a/src/views/AccountRecovery.vue b/src/views/AccountRecovery.vue
index 492c85e..2ef988f 100644
--- a/src/views/AccountRecovery.vue
+++ b/src/views/AccountRecovery.vue
@@ -54,7 +54,7 @@
@@ -99,7 +99,7 @@
@@ -118,12 +118,12 @@