1.添加一个div作为容器 并为其取一个id
<div id="notificationContainer"></div>
2.加载其到容器div中
import {notification} from 'ant-design-vue';
function openNotification(){
//加载配置
notification.config({
getContainer: () => document.getElementById('notificationContainer'),
});
}
这样就完成了加载notification到指定容器的操作
2033

被折叠的 条评论
为什么被折叠?



