Toasts
Notifikasi ringan yang muncul di berbagai sudut layar dengan sistem.
Toast Placement
Pilih posisi kemunculan notifikasiInteractive Types
Documentation
Gunakan parameter position untuk menentukan arah tumpukan notifikasi.
<!-- Memicu toast dengan posisi spesifik -->
<button @click="$dispatch('toast', {
type: 'success',
message: 'Data saved!',
position: 'top-right'
})">
Launch Top Right
</button>
<!-- Opsi Posisi:
'top-left', 'top-center', 'top-right',
'bottom-left', 'bottom-center', 'bottom-right'
-->