vue-toastflow
v1.1.8
Published
Framework-agnostic toast engine with a Vue 3 renderer. Typed core, smooth stack animations, CSS-first theming, and full control over layout and behavior.
Maintainers
Readme

@vue-toastflow
Vue 3 package for Toastflow.
If you are using Nuxt, install nuxt-toastflow (wrapper around
vue-toastflow).
📚 Documentation
- Docs: https://docs.toastflow.top/
- Comparisons (Vue ecosystem toasts): https://docs.toastflow.top/comparisons/overview
- Playground: https://toastflow.top/
- npm: https://www.npmjs.com/package/vue-toastflow
📦 Includes
createToastflowplugintoastprogrammatic API<ToastContainer />,<Toast />,<ToastProgress />- default styles and icon components
🚀 Quick Start
pnpm add vue-toastflowimport { createApp } from "vue";
import App from "./App.vue";
import { createToastflow } from "vue-toastflow";
createApp(App).use(createToastflow()).mount("#app");
<template>
<ToastContainer />
</template>
<script setup lang="ts">
import { ToastContainer, toast } from "vue-toastflow";
toast.success({ title: "Saved", description: "Your changes are live." });
</script>📄 License
MIT
