feat: drag scroll package

This commit is contained in:
puriphatt 2024-12-24 13:17:43 +07:00
parent 1792f60055
commit bfe5da2565
2 changed files with 3 additions and 0 deletions

View file

@ -34,6 +34,7 @@
"udsv": "^0.6.0",
"uuid": "^10.0.0",
"vue": "^3.4.38",
"vue-dragscroll": "^4.0.6",
"vue-i18n": "^9.14.0",
"vue-pdf": "^4.3.0",
"vue-router": "^4.4.3"

View file

@ -3,9 +3,11 @@ 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';
import VueDragscroll from 'vue-dragscroll';
export default boot(({ app }) => {
app.component('global-dialog', GlobalDialog);
app.component('global-loading', GlobalLoading);
app.component('VueDatePicker', VueDatePicker);
app.use(VueDragscroll);
});