一文详细分析Vue3中的emit用法(子传父)
作者:码农研究僧
Emit是Vue3中另一种常见的组件间传值方式,它通过在子组件中触发事件并将数据通过事件参数传递给父组件来实现数据传递,这篇文章主要给大家介绍了关于详细分析Vue3中emit用法(子传父)的相关资料,需要的朋友可以参考下
1. 基本知识
在 Vue 3 中,emit 是一种机制,用于在子组件中触发事件,并在父组件中监听这些事件
提供一种组件间通信的方式,尤其是在处理父子组件数据传递和交互时非常有用
一共有两种方式
1.1 emit
子组件中使用emit
<template> <button @click="handleClick">Click me</button> </template> <script> export default { name: 'ChildComponent', methods: { handleClick() { this.$emit('custom-event', 'Hello from child'); } } } </script>
父组件监听子组件:
<template> <div> <ChildComponent @custom-event="handleCustomEvent" /> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { name: 'ParentComponent', components: { ChildComponent }, methods: { handleCustomEvent(payload) { console.log(payload); // 输出 'Hello from child' } } } </script>
1.2 defineEmits
在 Vue 3 中,还可以使用 Composition API 的 defineEmits 方法来定义和使用 emit
子组件中定义和使用emit:
<template> <button @click="emitEvent">Click me</button> </template> <script setup> import { defineEmits } from 'vue'; const emit = defineEmits(['custom-event']); function emitEvent() { emit('custom-event', 'Hello from child with Composition API'); } </script>
父组件监听子组件:
<template> <div> <ChildComponent @custom-event="handleCustomEvent" /> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; export default { name: 'ParentComponent', components: { ChildComponent }, methods: { handleCustomEvent(payload) { console.log(payload); // 输出 'Hello from child with Composition API' } } } </script>
2. Demo
完整Demo如下:
- 创建子组件:
<template> <button @click="emitEvent">Click me</button> </template> <script setup> import { defineEmits } from 'vue'; const emit = defineEmits(['custom-event']); function emitEvent() { emit('custom-event', 'Hello from child with Composition API'); } </script>
- 创建父组件:
<template> <div> <ChildComponent @custom-event="handleCustomEvent" /> <p>{{ message }}</p> </div> </template> <script> import ChildComponent from './ChildComponent.vue'; import { ref } from 'vue'; export default { name: 'ParentComponent', components: { ChildComponent }, setup() { const message = ref(''); function handleCustomEvent(payload) { message.value = payload; } return { message, handleCustomEvent }; } } </script>
- 应用组件:
<template> <ParentComponent /> </template> <script> import ParentComponent from './components/ParentComponent.vue'; export default { name: 'App', components: { ParentComponent } } </script>
主入口文件:
import { createApp } from 'vue'; import App from './App.vue'; createApp(App).mount('#app');
总结
到此这篇关于Vue3中的emit用法(子传父)的文章就介绍到这了,更多相关Vue3中emit用法内容请搜索脚本之家以前的文章或继续浏览下面的相关文章希望大家以后多多支持脚本之家!