summaryrefslogtreecommitdiff
path: root/plugins/vue-toastification.js
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/vue-toastification.js')
-rw-r--r--plugins/vue-toastification.js8
1 files changed, 8 insertions, 0 deletions
diff --git a/plugins/vue-toastification.js b/plugins/vue-toastification.js
new file mode 100644
index 0000000..a37fcfa
--- /dev/null
+++ b/plugins/vue-toastification.js
@@ -0,0 +1,8 @@
+import Vue from "vue";
+import Toast from "vue-toastification";
+
+import "vue-toastification/dist/index.css";
+
+const options = {};
+
+Vue.use(Toast, options);