refactor for naive ui

This commit is contained in:
nquidox 2025-09-12 23:50:21 +03:00
parent 384fe7eb75
commit c41b5a2103
2 changed files with 54 additions and 27 deletions

View file

@ -1,5 +1,6 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import naive from 'naive-ui'
import App from './App.vue'
import router from './router'
@ -8,5 +9,6 @@ const app = createApp(App)
app.use(createPinia())
app.use(router)
app.use(naive)
app.mount('#app')