我试图在我的Angular应用程序中使用sweetalert2并且它正在工作但是每次打开swal弹出窗口时,背景中都有一个滚动条,滚动条下面的所有内容都只是白色......
const swal = require('sweetalert2');
swal({
title: 'Sind Sie sicher?',
text: "Sie werden möglicherweise Gebühren für die vorzeitige Kündigung zahlen müssen!",
type: 'warning',
showCancelButton: true,
confirmButtonColor: '#3085d6',
cancelButtonColor: '#d33',
cancelButtonText:'Abbrechen',
confirmButtonText: 'Ja'
}).then((result) => {
if (result.value) {.....}
它只与第一行合作...如果我从sweetalert2导入swal它只是没有打开任何东西......