Vue3 - 警告组件发出事件,但它既没有在发出选项中声明,也没有作为道具声明

问题描述 投票:0回答:2
vuejs3
2个回答
1
投票

这个 answervue 3 会发出警告“无关的非发出事件侦听器” 可以帮助您。

将模板包装在

<div>
中可修复警告。

<template>
  <div>
    <slot
...
    </VDialog>
  </div>
</template>

请检查您的发射是否仍按预期工作。

沙盒


0
投票

在 vue3 中,这对我有用,没有警告

const emit = defineEmits({
    IDialogConfirmComponentEvents: "IDialogConfirmComponentEvents",
});
© www.soinside.com 2019 - 2024. All rights reserved.