登录
首页 >  文章 >  前端

VUE3 + element-plus 中,子组件使用 this.$emit 发送消息,父组件为什么接收不到?

时间:2024-11-11 13:42:52 274浏览 收藏

学习文章要努力,但是不要急!今天的这篇文章《VUE3 + element-plus 中,子组件使用 this.$emit 发送消息,父组件为什么接收不到?》将会介绍到等等知识点,如果你想深入学习文章,可以关注我!我会持续更新相关文章的,希望对大家都能有所帮助!

VUE3 + element-plus 中,子组件使用 this.$emit 发送消息,父组件为什么接收不到?

vue3 + element-plus, this.$emit失效,为什么?

问题描述

在 vue3 + element-plus 中,子组件使用 this.$emit 向父组件发送消息,但在父组件中无法收到。

分析和解决

根据提供的代码,可以发现以下问题:

1. 子组件的事件名不正确

子组件中使用 this.$emit("conditionupdate") 触发自定义事件,但父组件的事件监听器却是 "update"。两者名称不一致导致消息发送失败。

2. 子组件未注册事件

父组件需要在渲染子组件时注册事件监听器,才能接收子组件发送的消息。

修改后的代码

子组件

<script>
import {ref} from 'vue';
export default {
  name: 'newnew',
  props: ['column', 'column_filter_type', 'select_items'],
  data() {
    return {
      open_flag: ref(true),
      condition: {
        value_start: '',
        value_end: ''
      }
    }
  },
  methods: {
    confirm() {
      this.open_flag = false;
      // ...这里应该依据条件类型做校验
      this.$emit('update', {
        column: this.column,
        column_filter_type: this.column_filter_type,
        condition: this.condition
      });
    }
  }
}
</script>

父组件

<newnew
    ...
    @update="conditionUpdate"  // 注册事件监听器
/>

通过以上修改,子组件可以正确向父组件发送消息,从而触发父组件中的 conditionupdate 方法。

理论要掌握,实操不能落!以上关于《VUE3 + element-plus 中,子组件使用 this.$emit 发送消息,父组件为什么接收不到?》的详细介绍,大家都掌握了吧!如果想要继续提升自己的能力,那么就来关注golang学习网公众号吧!

相关阅读
更多>
最新阅读
更多>
课程推荐
更多>