diff --git a/src/components/HighscorePage.vue b/src/components/HighscorePage.vue new file mode 100644 index 0000000..75f14d9 --- /dev/null +++ b/src/components/HighscorePage.vue @@ -0,0 +1,233 @@ + + + + + diff --git a/src/router.js b/src/router.js index 32ae017..a5fbaaf 100644 --- a/src/router.js +++ b/src/router.js @@ -11,6 +11,7 @@ import AdminPage from "@/components/AdminPage"; import WinnerPage from "@/components/WinnerPage"; import LotteryPage from "@/components/LotteryPage"; import HistoryPage from "@/components/HistoryPage"; +import HighscorePage from "@/components/HighscorePage"; const routes = [ { @@ -52,6 +53,10 @@ const routes = [ { path: "/history", component: HistoryPage + }, + { + path: "/highscore", + component: HighscorePage } ];