change notification system to vue-toastification

This commit is contained in:
ArabCoders
2024-12-30 19:31:10 +03:00
parent ba4594a584
commit 0da19458e9
6 changed files with 863 additions and 929 deletions

View File

@@ -0,0 +1,9 @@
import Toast from 'vue-toastification'
export default defineNuxtPlugin(nuxtApp => nuxtApp.vueApp.use(Toast, {
transition: "Vue-Toastification__bounce",
maxToasts: 5,
closeOnClick: false,
newestOnTop: true,
showCloseButtonOnHover: true,
}))