summary refs log tree commit diff stats
path: root/client/src/main.js
diff options
context:
space:
mode:
authorAndinus <andinus@nand.sh>2022-02-03 22:19:38 +0530
committerAndinus <andinus@nand.sh>2022-02-03 22:19:38 +0530
commita1f6fe51534f0a9b07d84f4483f3c5de9ca7cdbc (patch)
treeecef78b9b366731168e5971264f76899a530d87d /client/src/main.js
parent8399b626aac16c648af8bf0d60c40b02f361ce2f (diff)
downloadvela-a1f6fe51534f0a9b07d84f4483f3c5de9ca7cdbc.tar.gz
Make CreateSmiles functional, basic implementation of ManageSmiles
Diffstat (limited to 'client/src/main.js')
-rw-r--r--client/src/main.js4
1 files changed, 4 insertions, 0 deletions
diff --git a/client/src/main.js b/client/src/main.js
index 76a71b3..03f0e65 100644
--- a/client/src/main.js
+++ b/client/src/main.js
@@ -11,6 +11,8 @@ import Button from 'primevue/button';
 import Card from 'primevue/card';
 import Toast from 'primevue/toast';
 import ProgressBar from 'primevue/progressbar';
+import Message from 'primevue/message';
+import FileUpload from 'primevue/fileupload';
 
 import 'primevue/resources/themes/lara-dark-blue/theme.css';
 import 'primevue/resources/primevue.min.css';
@@ -28,6 +30,8 @@ app.component('InputText', InputText);
 app.component('Button', Button);
 app.component('Card', Card);
 app.component('Toast', Toast);
+app.component('Message', Message);
 app.component('ProgressBar', ProgressBar);
+app.component('FileUpload', FileUpload);
 
 app.mount('#app');