This commit is contained in:
2023-04-26 23:17:50 +08:00
parent bf51ba13a3
commit 5f76adf6df
5 changed files with 154 additions and 3 deletions

View File

@@ -1,11 +1,11 @@
import { createRouter, createWebHistory, RouteRecordRaw } from 'vue-router';
import HomeView from '../views/HomeView.vue';
import IndexView from '../views/IndexView.vue';
const routes: Array<RouteRecordRaw> = [
{
path: '/',
name: 'home',
component: HomeView,
component: IndexView,
},
{
path: '/about',