rebuild: vite

This commit is contained in:
Kisechan
2025-03-02 22:11:27 +08:00
parent c817cc6511
commit a71376fe05
33 changed files with 388 additions and 3228 deletions

View File

@ -1,17 +1,8 @@
import { createRouter, createWebHistory } from 'vue-router'
import HomeView from '../views/HomeView.vue'
import Home from '@/views/Home.vue'
const routes = [
{
path: '/',
name: 'home',
component: HomeView
},
{
path: '/about',
name: 'about',
component: () => import('../views/AboutView.vue')
}
{ path: '/', component: Home }
]
const router = createRouter({