jws-frontend/src/boot/components.ts

12 lines
439 B
TypeScript
Raw Normal View History

2024-04-02 11:02:16 +07:00
import { boot } from 'quasar/wrappers';
2024-04-09 17:55:55 +07:00
import VueDatePicker from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css'
2024-04-02 11:02:16 +07:00
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);
2024-04-09 17:55:55 +07:00
app.component('VueDatePicker', VueDatePicker);
2024-04-02 11:02:16 +07:00
});