This commit is contained in:
2025-06-26 09:22:53 +02:00
parent 3521a477f2
commit fe8ec468fe
5 changed files with 13410 additions and 6 deletions

View File

@ -0,0 +1,10 @@
import * as Vue3Toastify from "vue3-toastify";
import "vue3-toastify/dist/index.css";
export default defineNuxtPlugin((nuxtApp) => {
nuxtApp.vueApp.use(Vue3Toastify.default, { autoClose: 2000 });
return {
provide: { toast: Vue3Toastify.toast },
};
});