前往小程序,Get更优阅读体验!
立即前往
首页
学习
活动
专区
工具
TVP
发布
社区首页 >专栏 >Vue3 declare it using the "emits" option警告

Vue3 declare it using the "emits" option警告

作者头像
用户6256742
发布2022-07-06 14:27:20
3.2K0
发布2022-07-06 14:27:20
举报
文章被收录于专栏:网络日志

Vue3已将父子组件传值修改为defineEmits函数,但是在日常使用时有时会报错:[Vue warn]: Extraneous non-emits event listeners (update) were passed to component but could not be automatically inherited because component renders fragment or text root nodes. If the listener is intended to be a component custom event listener only, declare it using the "emits" option.

通过警告信息可以得出Vue需要我们将emits中的传参事件标明:

代码语言:javascript
复制
<script setup>
import { ref, watchEffect, watch, computed } from "vue";
let emit = defineEmits(["update:mode", "update:data", "update"]);
let props = defineProps({
  mode: {
    type: [String, Boolean],
    required: true,
  },
  data: {
    type: Object,
    required: true,
  },
});
</script>

这样修改,将需要用到的事件在定义时传在函数就可以了

本文参与 腾讯云自媒体同步曝光计划,分享自作者个人站点/博客。
如有侵权请联系 cloudcommunity@tencent.com 删除

本文分享自 作者个人站点/博客 前往查看

如有侵权,请联系 cloudcommunity@tencent.com 删除。

本文参与 腾讯云自媒体同步曝光计划  ,欢迎热爱写作的你一起参与!

评论
登录后参与评论
0 条评论
热度
最新
推荐阅读
领券
问题归档专栏文章快讯文章归档关键词归档开发者手册归档开发者手册 Section 归档