Overview of active payment methode

This commit is contained in:
2026-08-05 19:12:49 +02:00
parent 7f8417e915
commit 67c4e69f7b
3 changed files with 18 additions and 4 deletions
@@ -28,6 +28,12 @@ function setValue(name, value) {
:modelValue="modelValue[option.name] ?? ''"
@update:modelValue="value => setValue(option.name, value)"
/>
<input
v-else-if="option.type === 'checkbox'"
type="checkbox"
:checked="modelValue[option.name] ?? false"
@change="event => setValue(option.name, event.target.checked)"
/>
<input
v-else
type="text"