2020-10-30 08:57:39 +00:00
|
|
|
import { boot } from 'quasar/wrappers';
|
|
|
|
import { Loading } from 'quasar';
|
|
|
|
|
|
|
|
// "async" is optional;
|
|
|
|
// more info on params: https://quasar.dev/quasar-cli/cli-documentation/boot-files#Anatomy-of-a-boot-file
|
2020-10-30 11:08:33 +00:00
|
|
|
export default boot((/* { app, router, Vue ... } */) => {
|
2020-10-30 08:57:39 +00:00
|
|
|
Loading.setDefaults({
|
|
|
|
spinner: () => import('src/components/loading/DarkCircularProgress.vue')
|
|
|
|
});
|
|
|
|
});
|