资讯动态

Vue3中不太知道的事儿

发布时间:2026/8/28 14:59:27 来源:尧图企业网站定制
这篇记录一下我之前不知道的、或者比较模糊的小知识点。内容也不多,简单记录一下。1. 子传父的过程是同步的这个就是大家可能会出错的小知识,就是子传父,子组件像父组件emit一个事件,然后父组件监听事件,进行触发,这个过程是同步的哈,千万不要理解为异步的。子组件:template div button @click="sendParent()"子传父/button /div /template script setup lang='ts' const emits = defineEmits{ (e: 'child-message', msg: string): void }() const sendParent = () = { emits('child-message', 'hello parent') console.log('子组件触发了') } /script父组件:template div MyChild @child-message="handleChildMessage" / /div /template

读完文章,也想定制专属网站?

尧图设计师 24 小时内与您沟通定制方案

免费获取报价