Files
watchstate/frontend/plugins/toast.js
2024-12-30 19:31:10 +03:00

10 lines
261 B
JavaScript

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,
}))