jws-frontend/src/boot/components.ts

14 lines
510 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';
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';
2024-12-24 13:17:43 +07:00
import VueDragscroll from 'vue-dragscroll';
2024-04-02 11:02:16 +07:00
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-12-24 13:17:43 +07:00
app.use(VueDragscroll);
2024-04-02 11:02:16 +07:00
});