father
<template> <TestCom v-model="test1" v-model:test2="test2"></TestCom> <h1>{{test1}}test1</h1> <h1>{{test2}}test2</h1> </template> <script setup> import { ref, reactive } from 'vue' const test1 = ref('') const test2 = ref('') </script>
Sub (setup syntax sugar)
<template> <input v-model="message" @input="changeInfo(message)" /> <input v-model="message2" @input="changeInfo2(message2)" /> </template> <script setup> import { ref, watch } from 'vue'; // Introduced hereconst emit = defineEmits(['update:modelValue', 'update:test2']) const props = defineProps({ // The parent component v-model does not specify a parameter name, so the default is modelValue modelValue:{ type:String, default: 'test' }, test2: { type: String, default: 'aaa' } }) let message = ref('123') let message2 = ref('456') // Because props.test2 is a non-reference type, when changing, it needs to be listened to reassign the responsive datawatch(()=> ,() => { = }) watch(()=> props.test2,() => { = props.test2}) // Two-way data bindingconst changeInfo = (info) => { emit('update:modelValue', info) } const changeInfo2 = (info2) => { emit('update:test2', info2) } </script>
Sub (regular writing)
<script> import { ref, watch } from 'vue'; export default { props: { // The parent component v-model does not specify a parameter name, so the default is modelValue modelValue:{ type:String, default: 'test' }, test2: { type: String, default: 'aaa' } }, setup(props, { emit }) { let message = ref('123') let message2 = ref('456') // Because props.test2 is a non-reference type, when changing, it needs to be listened to reassign the responsive data watch(()=> ,() => { = }) watch(()=> props.test2,() => { = props.test2}) // Two-way data binding const changeInfo = (info) => { emit('update:modelValue', info) } const changeInfo2 = (info2) => { emit('update:test2', info2) } return { message, message2, changeInfo, changeInfo2 } } } </script>
Supplement: Use Rich Text Editor Data Issues in Project Parent Component
<wm-tinymce ref="editor" v-model="" />
Subcomponents
<template> <div class="tinymce-container"> <editor v-model="tinymceData" :api-key="key" :init="tinymceOptions" :name="tinymceName" :readonly="tinymceReadOnly" /> </div> </template> <script> import { ref, watch, computed, onMounted } from 'vue' import tinymce from 'tinymce/tinymce' import { setupPreview, setupWmPreview, setupIndent2em } from './plugins' import { key, plugins, toolbar, setting } from './config' import Editor from '@tinymce/tinymce-vue' import Modal from './modal/' export default { name: 'WmTinymce', components: { Editor, }, props: { modelValue: { type: String, default: '', }, }, emits: ['update:modelValue'], setup(props, { emit }) { const tinymceData = ref() // Editor data watch( () => , (d) => ( = d) ) watch( () => , (data) => emit('update:modelValue', data) ) // Listen to the changes in rich text input values return { tinymceData, } }, } </script>
Summarize
This is the article about the use of emit('update:modelValue') in vue3. For more related content on using vue3, please search for my previous articles or continue browsing the related articles below. I hope everyone will support me in the future!