9 lines
292 B
TypeScript
9 lines
292 B
TypeScript
|
|
import { boot } from 'quasar/wrappers';
|
||
|
|
import GlobalDialog from 'components/GlobalDialog.vue';
|
||
|
|
import GlobalLoading from 'components/GlobalLoading.vue';
|
||
|
|
|
||
|
|
export default boot(({ app }) => {
|
||
|
|
app.component('global-dialog', GlobalDialog);
|
||
|
|
app.component('global-loading', GlobalLoading);
|
||
|
|
});
|