1
0
mirror of https://github.com/advplyr/audiobookshelf.git synced 2025-04-16 01:16:24 +02:00
audiobookshelf/client/plugins/toast.js
2021-08-17 17:01:11 -05:00

11 lines
214 B
JavaScript

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);