6 lines
151 B
JavaScript
6 lines
151 B
JavaScript
export function showToast(details) {
|
|
let event = new CustomEvent('weiroToast', {
|
|
detail: details
|
|
});
|
|
window.dispatchEvent(event);
|
|
} |