Fix frontend blank page issue

- Simplify Home.vue to avoid API loading errors
- Use built-in template data instead of API calls
- Add simple error handling for API requests
- Add test page for debugging
This commit is contained in:
Poker Design Developer
2026-05-31 19:35:53 +08:00
parent 5dbcebf7a2
commit 48b6fb0a39
5 changed files with 212 additions and 147 deletions

View File

@@ -3,7 +3,7 @@ import { createPinia } from 'pinia'
import ElementPlus from 'element-plus'
import 'element-plus/dist/index.css'
import App from './App.vue'
import router from './router/index.js'
import router from './router'
const app = createApp(App)
app.use(createPinia())