This code is broken. What caused the problem?
<script setup>
defineProps({
modelValue: Boolean
});
const emit = defineEmits(['update:modelValue']);
</script>
<template>
<input
:value="modelValue"
type="checkbox"
@input="emit('update:modelValue', $event.target.value)"
/>
</template>