as-toast
v1.1.0
Published
Simple and customizable toast notifications for Svelte
Downloads
43
Maintainers
Readme
AS Toast 🍞 (for Svelte)
Simple and customizable toast notifications for Svelte
Intended as a replacement for alert()
, though in a non-blocking fashion.
Links
- Open quick start in Svelte REPL
- View a demo
- View the docs
- View Theme Ideas 🎨
- Vist package on npm
- Visit project repo on GitHub.
Quick Start
npm i -D as-toast
<!-- App.svelte -->
<script>
import { Toasts, addToast } from "as-toast";
</script>
<Toasts />
<button on:click={() => {addToast("Hello World")}}>
add toast
</button>
--> Open quick start in Svelte REPL