charts added

This commit is contained in:
nquidox 2025-09-25 19:12:42 +03:00
parent 8442b8e6b1
commit fd9976e3d3
3 changed files with 49 additions and 3 deletions

View file

@ -2,6 +2,7 @@ import { createApp } from 'vue'
import { createPinia } from 'pinia'
import naive from 'naive-ui'
import './styles/styles.css'
import VueApexCharts from 'vue3-apexcharts'
import App from './App.vue'
import router from './router'
@ -11,5 +12,6 @@ const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(naive)
app.use(VueApexCharts)
app.mount('#app')