Fix typo in event declaration

This commit is contained in:
Bubka 2023-11-17 08:15:22 +01:00
parent b9c8f9008f
commit 77aed2bba6

View File

@ -26,7 +26,7 @@
})
// defines what events our component emits
const emit = defineEmits('update:modelValue')
const emit = defineEmits(['update:modelValue'])
function setRadio(event) {
emit('update:modelValue', event)