






Notification.requestPermission((status) => {
if (status === 'granted') {
const myNotification = new Notification('温馨提示', {
icon: '/logo-1.png',
body: `内容区....`,
});
}
});
网友评论