Skip to content

๐ŸŽ‰ Vue3-Toastify allows you to add notifications to your app with ease.

License

Notifications You must be signed in to change notification settings

KornaVue/vue3-toastify

ย 
ย 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 
ย 

Repository files navigation

Vue3 toastify

Documentation

Check the documentation to get you started!

Demo

Wanna try it out? Check out the live demo!

Installation

Using npm

npm install vue3-toastify

Using yarn

yarn add vue3-toastify

Using pnpm

pnpm add vue3-toastify

Basic Usage

<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>

Sponsors

Special Sponsor

special sponsor appwrite

About

๐ŸŽ‰ Vue3-Toastify allows you to add notifications to your app with ease.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 65.5%
  • Vue 14.6%
  • SCSS 12.3%
  • JavaScript 6.3%
  • Other 1.3%