这个 answer 到 vue 3 会发出警告“无关的非发出事件侦听器” 可以帮助您。
将模板包装在
<div>
中可修复警告。
<template>
<div>
<slot
...
</VDialog>
</div>
</template>
请检查您的发射是否仍按预期工作。
在 vue3 中,这对我有用,没有警告
const emit = defineEmits({
IDialogConfirmComponentEvents: "IDialogConfirmComponentEvents",
});