This commit is contained in:
j3d1 2024-05-22 22:45:05 +02:00
parent 761870dc82
commit b4662f00be

View file

@ -27,7 +27,8 @@ export default {
}
},
onchange(event) {
console.log(event.target.innerText);
this.$emit('input', event.target.innerText);
this.value = event.target.innerText;
}
}
};