From 28abd098cfac2a0c6687def3de898a2ae52c09e1 Mon Sep 17 00:00:00 2001 From: Paul Valerie GOMA Date: Mon, 28 Jul 2025 11:20:09 +0200 Subject: [PATCH] =?UTF-8?q?=F0=9F=90=9B=20fix:=20fixed=20bugs?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/main.ts | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/main.ts b/src/main.ts index 0197873..590d577 100644 --- a/src/main.ts +++ b/src/main.ts @@ -3,10 +3,12 @@ import { createApp } from 'vue' import App from './App.vue' import primeVue from 'primevue/config' import ToastService from 'primevue/toastservice' +import ConfirmationService from 'primevue/confirmationservice' const app = createApp(App) app.use(primeVue) app.use(ToastService) +app.use(ConfirmationService) app.mount('#app')