2024-11-07 14:13:39 +02:00
|
|
|
import { createApp } from 'vue'
|
|
|
|
|
import { createPinia } from 'pinia'
|
2024-11-11 16:06:09 +02:00
|
|
|
import PouchDB from 'pouchdb-browser'
|
|
|
|
|
|
|
|
|
|
import ElementPlus from 'element-plus'
|
|
|
|
|
import 'element-plus/dist/index.css'
|
2024-11-07 14:13:39 +02:00
|
|
|
|
|
|
|
|
import App from './App.vue'
|
|
|
|
|
import router from './router'
|
|
|
|
|
|
|
|
|
|
const app = createApp(App)
|
|
|
|
|
|
|
|
|
|
app.use(createPinia())
|
|
|
|
|
app.use(router)
|
2024-11-11 16:06:09 +02:00
|
|
|
app.use(ElementPlus)
|
2024-11-07 14:13:39 +02:00
|
|
|
|
|
|
|
|
app.mount('#app')
|
2024-11-11 16:06:09 +02:00
|
|
|
|
|
|
|
|
window.PouchDB = PouchDB // it for debug in console only
|