Sweetalert2滚动条在后台

时间:2018-02-16 07:41:02

标签: angular sweetalert2

我试图在我的Angular应用程序中使用sweetalert2并且它正在工作但是每次打开swal弹出窗口时,背景中都有一个滚动条,滚动条下面的所有内容都只是白色...... sweetalert2 Popup with scrollbar in the background

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它只是没有打开任何东西......

0 个答案:

没有答案