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';
|
2024-07-08 11:21:00 +07:00
|
|
|
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
|
|
|
});
|