[[oktatas:web:angular|< Angular]] ====== Angular 18 Sweetalert2 ====== * **Szerző:** Sallai András * Copyright (c) 2024, Sallai András * Licenc: [[https://creativecommons.org/licenses/by-sa/4.0/|CC Attribution-Share Alike 4.0 International]] * Web: https://szit.hu ===== Bevezetés ===== JavaScript felugró ablak. Webhely: * https://sweetalert2.github.io/ (2025) ===== Telepítés ===== npm install sweetalert2 ===== Használat ===== Importálni kell. import Swal from 'sweetalert2'; Például törléssel: Swal.fire({ title: 'Biztosan törlöd?', showDenyButton: true, confirmButtonText: 'Igen', denyButtonText: `Nem`, }).then((result) => { if (result.isConfirmed) { //ide jöhet a törlés hívása } })