v-model=“count” 或者 xxx.sync=“msg”
:value=“count” 和 @input=“count=$event”
:xxx=“msg” 和 @update:xxx=“msg=$event”
现在:一个 v-model 指令搞定,不需要记忆两种语法
借助modelValue和@update:modelValue实现
<cp-radio-btn :modelValue="count" @update:modelValue="count = $event"></cp-radio-btn>
//可以简写为以下:
<cp-radio-btn v-model="count"></cp-radio-btn>
//ts部分
<script setup lang="ts">
defineProps<{
modelValue: number
}>()
defineEmits<{
(e: 'update:modelValue', count: number): void
}>()
</script>
<template>
<div class="cp-radio-btn">
{{ modelValue }}
<button @click="$emit('update:modelValue', modelValue + 1)">+1</button>
</div>
</template>
<style lang="scss" scoped></style>
另一种用法
<cp-radio-btn v-model:count="count"></cp-radio-btn>
<script setup lang="ts">
defineProps<{
count: number
}>()
defineEmits<{
(e: 'update:count', count: number): void
}>()
</script>
<template>
<div class="cp-radio-btn">
{{ count }}
<button @click="$emit('update:count', count + 1)">+1</button>
</div>
</template>
<style lang="scss" scoped></style>