mirror of
https://github.com/advplyr/audiobookshelf-app.git
synced 2025-06-24 14:18:50 +02:00
10 lines
207 B
JavaScript
10 lines
207 B
JavaScript
|
import Vue from "vue";
|
||
|
import Toast from "vue-toastification";
|
||
|
import "vue-toastification/dist/index.css";
|
||
|
|
||
|
const options = {
|
||
|
hideProgressBar: true,
|
||
|
position: 'bottom-center'
|
||
|
};
|
||
|
|
||
|
Vue.use(Toast, options);
|