Check the documentation to get you started!
Wanna try it out? Check out the live demo!
npm install vue3-toastify
yarn add vue3-toastify
pnpm add vue3-toastify
<template>
<button @click="notify">Notify !</button>
</template>
<script setup>
import { toast } from 'vue3-toastify';
import 'vue3-toastify/dist/index.css';
const notify = () => {
toast("Wow so easy !", {
autoClose: 1000,
}); // ToastOptions
}
</script>