This commit is contained in:
María
2025-10-23 14:59:38 +02:00
committed by María
parent 04fcc47a0d
commit ba4e01e10c
9 changed files with 106 additions and 2225 deletions

View File

@@ -20,6 +20,10 @@
import { mapGetters } from 'vuex';
export default {
props: {
id: {
type: String,
required: true
},
label: {
type: Object,
default: () => ({})
@@ -43,7 +47,7 @@ export default {
},
methods: {
updateValue(event) {
this.$emit('input-value', event.target.value)
this.$emit('input-value', { [this.id]: event.target.value });
}
},
}