Feat/personal highscore #44

Merged
KevinMidboe merged 19 commits from feat/personal-highscore into master 2020-10-11 16:19:52 +00:00
Showing only changes of commit 05b07ca465 - Show all commits

View File

@@ -12,6 +12,7 @@ import WinnerPage from "@/components/WinnerPage";
import LotteryPage from "@/components/LotteryPage";
import HistoryPage from "@/components/HistoryPage";
import HighscorePage from "@/components/HighscorePage";
import PersonalHighscorePage from "@/components/PersonalHighscorePage";
import RequestWine from "@/components/RequestWine";
import AllRequestedWines from "@/components/AllRequestedWines";
@@ -57,6 +58,10 @@ const routes = [
path: "/history",
component: HistoryPage
},
{
path: "/highscore/:name",
component: PersonalHighscorePage
},
{
path: "/highscore",
component: HighscorePage