完成公告、排行榜

This commit is contained in:
jiayuqi7813
2022-06-25 00:44:58 +08:00
parent d6a30a98f9
commit 2e01120588
7 changed files with 149 additions and 3 deletions

View File

@@ -2,6 +2,7 @@ import { createRouter, createWebHistory } from 'vue-router'
import Login from '../views/Login.vue'
import Challenge from '../views/Challenges.vue'
import Scoreboard from '../views/Scoreboard.vue'
import Notification from "../views/Notification.vue";
const routerHistory = createWebHistory()
const router = createRouter({
@@ -31,6 +32,11 @@ const router = createRouter({
name:'Scoreboard',
component: Scoreboard,
},
{
path:'/notification',
name:'Notification',
component: Notification,
}
]
})