weiro/assets/js/services/toast.js

6 lines
151 B
JavaScript
Raw Normal View History

2026-02-23 10:18:34 +00:00
export function showToast(details) {
let event = new CustomEvent('weiroToast', {
detail: details
});
window.dispatchEvent(event);
}