feat(webui): totally convert to new webui

This commit is contained in:
2026-05-04 20:33:22 +08:00
parent 741d328430
commit fa07b340e7
129 changed files with 1938 additions and 17824 deletions
+15
View File
@@ -0,0 +1,15 @@
import { createApp } from 'vue'
import App from './App.vue'
import { useAuth } from './app/auth'
import { initTheme } from './app/theme'
import './style.css'
initTheme()
const auth = useAuth()
if (auth.state.token && !auth.state.initialized) {
void auth.refreshCurrentUser().catch(() => undefined)
}
createApp(App).mount('#app')