refactor(editor): migrate FormInput to Composition API (#4406)

♻️ Refactor N8nFormInput to use composition API and make labels accesible
This commit is contained in:
OlegIvaniv
2022-10-24 09:39:22 +02:00
committed by GitHub
parent a40deef518
commit 8a4b9722c5
5 changed files with 170 additions and 199 deletions

View File

@@ -14,6 +14,7 @@
<n8n-form-input
v-else
v-bind="input.properties"
:name="input.name"
:value="values[input.name]"
:showValidationWarnings="showValidationWarnings"
@input="(value) => onInput(input.name, value)"