Initial Commit

This commit is contained in:
2025-07-08 05:08:10 +01:00
commit 7e445551af
28 changed files with 1872 additions and 0 deletions
+26
View File
@@ -0,0 +1,26 @@
import { createRouter, createWebHistory } from "vue-router";
const routes = [
{
path: "/",
name: "Home",
component: () => import("@/components/HomePage.vue"),
},
{
path: "/name-generator",
name: "NameGenerator",
component: () => import("@/components/NameGenerator.vue"),
},
{
path: "/attribute-calculator",
name: "AttributeCalculator",
component: () => import("@/components/AttributeCalculator.vue"),
},
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;