g2 / src /router /index.js
Yoobit's picture
t3
f50aa23
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