24 lines
552 B
TypeScript
24 lines
552 B
TypeScript
import './assets/main.css'
|
|
|
|
import { createApp } from 'vue'
|
|
import { createPinia } from 'pinia'
|
|
|
|
import App from './App.vue'
|
|
import router from './router'
|
|
import { useListsStore } from './stores/lists'
|
|
|
|
const app = createApp(App)
|
|
|
|
app.use(createPinia())
|
|
app.use(router)
|
|
|
|
app.mount('#app')
|
|
|
|
// Offline-first sync: attempt to flush the pending sync queue whenever the
|
|
// app becomes online again, and once eagerly on startup.
|
|
const listsStore = useListsStore()
|
|
window.addEventListener('online', () => {
|
|
void listsStore.sync()
|
|
})
|
|
void listsStore.sync()
|