尧图建网站 尧图建网站 YAOTU WEB BUILD 免费咨询
ARTICLE DETAIL

资讯详情

深耕网站建设与建站编程的一线实战洞察。

Vue3中不太知道的事儿

Vue3中不太知道的事儿 这篇记录一下我之前不知道的、或者比较模糊的小知识点。内容也不多,简单记录一下。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
返回列表