Geen omschrijving
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

sweetalert2.js 322B

12345678910111213141516
  1. import SwalPlugin from 'sweetalert2/dist/sweetalert2';
  2. const Swal = SwalPlugin.mixin({
  3. buttonsStyling: false,
  4. customClass: {
  5. confirmButton: 'btn btn-primary',
  6. cancelButton: 'btn btn-label-danger',
  7. denyButton: 'btn btn-label-secondary'
  8. }
  9. });
  10. try {
  11. window.Swal = Swal;
  12. } catch (e) {}
  13. export { Swal };