mirror of
https://github.com/jpros/tacticalrmm-web.git
synced 2026-02-28 23:31:54 +00:00
37 lines
585 B
JavaScript
37 lines
585 B
JavaScript
import Vue from "vue";
|
|
|
|
import "./styles/quasar.styl";
|
|
import "@quasar/extras/material-icons/material-icons.css";
|
|
import "@quasar/extras/fontawesome-v5/fontawesome-v5.css";
|
|
import {
|
|
Quasar,
|
|
Dialog,
|
|
Loading,
|
|
LoadingBar,
|
|
Meta,
|
|
Notify
|
|
} from 'quasar';
|
|
|
|
Vue.use(Quasar, {
|
|
config: {
|
|
loadingBar: {
|
|
color: "red",
|
|
size: "4px"
|
|
},
|
|
notify: {
|
|
position: "top",
|
|
timeout: 2000,
|
|
textColor: "white",
|
|
actions: [{ icon: "close", color: "white" }]
|
|
}
|
|
},
|
|
plugins: {
|
|
Dialog,
|
|
Loading,
|
|
LoadingBar,
|
|
Meta,
|
|
Notify
|
|
}
|
|
|
|
});
|