revise css

This commit is contained in:
Kisechan
2025-03-02 22:42:09 +08:00
parent a71376fe05
commit 42cbc98394
6 changed files with 111 additions and 70 deletions

View File

@ -1,8 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import Home from '@/views/Home.vue'
import Home from '@/views/Home.vue' // 确保路径正确
const routes = [
{ path: '/', component: Home }
{ path: '/', component: Home } // 确保根路径指向 Home 组件
]
const router = createRouter({