From 7ca0a35b3a97bb65019f2f02bd619c815cd0f347 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?dni=20=E2=9A=A1?= Date: Thu, 3 Oct 2024 17:00:18 +0200 Subject: [PATCH] vue3 @input migration --- lnbits/core/templates/core/account.html | 2 +- lnbits/templates/components.vue | 16 ++++++++-------- 2 files changed, 9 insertions(+), 9 deletions(-) diff --git a/lnbits/core/templates/core/account.html b/lnbits/core/templates/core/account.html index 6f81bab85..494099410 100644 --- a/lnbits/core/templates/core/account.html +++ b/lnbits/core/templates/core/account.html @@ -470,7 +470,7 @@ v-model="reactionChoice" :options="reactionOptions" label="Reactions" - @input="reactionChoiceFunc" + @update:model-value="reactionChoiceFunc" > @@ -310,7 +310,7 @@ v-if="o.type === 'number'" type="number" v-model="formData[o.name]" - @input="handleValueChanged" + @update:model-value="handleValueChanged" :label="o.label || o.name" :hint="o.description" :rules="applyRules(o.required)" @@ -322,7 +322,7 @@ type="textarea" rows="5" v-model="formData[o.name]" - @input="handleValueChanged" + @update:model-value="handleValueChanged" :label="o.label || o.name" :hint="o.description" :rules="applyRules(o.required)" @@ -332,7 +332,7 @@ @@ -394,7 +394,7 @@