mirror of
https://github.com/advplyr/audiobookshelf.git
synced 2024-12-20 19:06:06 +01:00
10 lines
179 B
JavaScript
10 lines
179 B
JavaScript
|
import Vue from "vue";
|
||
|
import Toast from "vue-toastification";
|
||
|
import "vue-toastification/dist/index.css";
|
||
|
|
||
|
const options = {
|
||
|
hideProgressBar: true
|
||
|
};
|
||
|
|
||
|
|
||
|
Vue.use(Toast, options);
|