feat: datepicker

This commit is contained in:
puriphatt 2024-04-09 17:55:55 +07:00
parent 1a884f9692
commit 1d4af8deda
3 changed files with 52 additions and 2 deletions

View file

@ -1,8 +1,11 @@
import { boot } from 'quasar/wrappers';
import VueDatePicker from '@vuepic/vue-datepicker';
import '@vuepic/vue-datepicker/dist/main.css'
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);
app.component('VueDatePicker', VueDatePicker);
});