Thing init

This commit is contained in:
zhongluofeng
2026-07-14 18:27:23 +08:00
parent 59c7d6d7ee
commit c514a7aced
150 changed files with 11861 additions and 22 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createApp } from 'vue'
import { createPinia } from 'pinia'
import App from './App.vue'
import './style.css'
import { useSearchStore } from './stores/searchStore'
const app = createApp(App)
const pinia = createPinia()
app.use(pinia)
const searchStore = useSearchStore()
searchStore.initGlobalIndex()
app.mount('#app')