为什么小程序中不支持v-model父子组件通信呢?
uniapp文档上显示的支持在组件中实现双向绑定。 [图片] <modal v-model="showModal" @confirm="modalConfirm"></modal>
//modal.vue
const props = defineProps({
modelValue: {
type: Boolean
},
});
const emits = defineEmits(['update:modelValue']);
function confirm() {
emits('update:modelValue', false);
}