Initial project and page setup.

This commit is contained in:
2022-01-15 09:52:21 -06:00
parent f40df6a196
commit 6c05cbba7b
22 changed files with 13715 additions and 0 deletions

7
src/router/router.js Normal file
View File

@@ -0,0 +1,7 @@
import { createRouter, createWebHashHistory } from "vue-router";
import { routes } from "./routes";
export const router = createRouter({
history: createWebHashHistory(),
routes: routes
});

21
src/router/routes.js Normal file
View File

@@ -0,0 +1,21 @@
import OverviewInfo from "@/pages/OverviewInfo.vue";
import MinecraftServer from "@/pages/MinecraftServer.vue";
import SteamServer from "@/pages/SteamServer.vue";
export const routes = [
{
path: "/",
name: "IntroPortal",
component: OverviewInfo,
},
{
path: "/remcs",
name: "remcs",
component: MinecraftServer,
},
{
path: "/steam",
name: "steam",
component: SteamServer,
}
];