test / src /router /index.js
Yoobit's picture
feat(docs): 更新 README 文档内容与使用说明
d17ebe3
raw
history blame contribute delete
301 Bytes
import { createRouter, createWebHistory } from 'vue-router'
import Leaderboard from '@/views/Leaderboard.vue'
const routes = [
{
path: '/',
name: 'Leaderboard',
component: Leaderboard
}
]
const router = createRouter({
history: createWebHistory(),
routes
})
export default router