jws-frontend/src/boot/components.ts

9 lines
292 B
TypeScript
Raw Normal View History

2024-04-02 11:02:16 +07:00
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);
});