const model = defineModel() function update() { model.value++ }
<div>Parent bound v-model is: {{ model }}</div> <button @click="update">Increment</button>
<Child v-model="countModel" />