1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-03-08 04:01:12 +01:00
audiobookshelf/client/plugins/toast.js

11 lines
214 B
JavaScript
Raw Normal View History

2021-08-18 00:01:11 +02:00
import Vue from "vue";
import Toast from "vue-toastification";
// Import the CSS or use your own!
import "vue-toastification/dist/index.css";
const options = {
hideProgressBar: true
};
Vue.use(Toast, options);