fix: map lifecycle crash, state persistence with pinia-persistedstate, and premium business details UI

This commit is contained in:
2026-03-03 13:21:09 -05:00
parent cdde701f9f
commit cfe9286fcb
13 changed files with 569 additions and 329 deletions

View File

@ -1,5 +1,6 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import piniaPluginPersistedstate from 'pinia-plugin-persistedstate'
import router from './router'
import i18n from './i18n'
import './style.css'
@ -16,6 +17,7 @@ if ('serviceWorker' in navigator) {
const app = createApp(App)
const pinia = createPinia()
pinia.use(piniaPluginPersistedstate)
app.use(pinia)
app.use(router)