我在primevue中使用confirmdialog,并遇到了以下错误:
[Vue警告]:未找到注入“Symbol()”
我不知道这个错误是什么意思,也不知道如何修复它。请问有人可以帮我吗? 以下是我的源代码:
const deleteCategory = () => {
confirm.require({
message: '您确定要继续吗?',
header: '确认',
icon: 'pi pi-exclamation-triangle',
accept: () => {
notification.showMessage("成功!");
},
reject: () => {
router.push({ name: "CategoriesPage" });
}
});
}
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
错误
[Vue warn]: injection "Symbol()" not found与您提供的代码无关。在嵌套组件中使用inject: ['injectedVar']时,如果没有从父组件提供它,就会出现[Vue warn]: injection ... not found。因此,您应该检查您尝试注入的内容以及它需要从哪里提供。有关更多信息,请参阅文档:提供/注入