利用setup(props, context)中的context进行操作 setup(props, context){functionsaveData(){ context.emit('change',123) } }
在Vue3setup () {}中$emit抛出事件 <template><!-- 点击事件 -->点击抛出事件</template>export default {setup (props ,context) {// 点击按钮function touchButton () {context.emit('success', '自带参数(可选)')}// 返回return {touchButton}}} 在Vue3中$emit抛出事件 <template><!-- 点击事件 ...