summary refs log tree commit diff stats
path: root/client/src/main.js
diff options
context:
space:
mode:
Diffstat (limited to 'client/src/main.js')
-rw-r--r--client/src/main.js6
1 files changed, 6 insertions, 0 deletions
diff --git a/client/src/main.js b/client/src/main.js
index 13ce79d..76a71b3 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -3,11 +3,14 @@ import App from './App.vue';
 import router from './router'
 
 import PrimeVue from 'primevue/config';
+import ToastService from 'primevue/toastservice';
 import Menubar from 'primevue/menubar';
 import Divider from 'primevue/divider';
 import InputText from 'primevue/inputtext';
 import Button from 'primevue/button';
 import Card from 'primevue/card';
+import Toast from 'primevue/toast';
+import ProgressBar from 'primevue/progressbar';
 
 import 'primevue/resources/themes/lara-dark-blue/theme.css';
 import 'primevue/resources/primevue.min.css';
@@ -18,10 +21,13 @@ const app = createApp(App);
 app.use(router);
 
 app.use(PrimeVue);
+app.use(ToastService);
 app.component('Divider', Divider);
 app.component('Menubar', Menubar);
 app.component('InputText', InputText);
 app.component('Button', Button);
 app.component('Card', Card);
+app.component('Toast', Toast);
+app.component('ProgressBar', ProgressBar);
 
 app.mount('#app');