feat: add apex charts
Some checks failed
Spell Check / Spell Check with Typos (push) Failing after 12s

This commit is contained in:
Thanaphon Frappet 2025-03-04 11:02:26 +07:00
parent 9c1f7b0de4
commit 8645fc4c45
3 changed files with 82 additions and 0 deletions

View file

@ -4,10 +4,12 @@ import '@vuepic/vue-datepicker/dist/main.css';
import GlobalDialog from 'components/GlobalDialog.vue';
import GlobalLoading from 'components/GlobalLoading.vue';
import VueDragscroll from 'vue-dragscroll';
import VueApexCharts from 'vue3-apexcharts';
export default boot(({ app }) => {
app.component('global-dialog', GlobalDialog);
app.component('global-loading', GlobalLoading);
app.component('VueDatePicker', VueDatePicker);
app.component('VueApexCharts', VueApexCharts);
app.use(VueDragscroll);
});