diff options
Diffstat (limited to 'plugins')
-rw-r--r-- | plugins/vue-toastification.js | 8 |
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); |