basic cheat view

This commit is contained in:
johba 2025-09-23 21:16:15 +02:00
parent 2be1e9d520
commit 3f137a2757
5 changed files with 503 additions and 12 deletions

View file

@ -29,6 +29,15 @@ const router = createRouter({
, },
component: () => import("../views/LoginView.vue"),
},
{
path: "/cheats",
name: "cheats",
meta: {
title: "Cheats",
layout: 'NavbarLayout'
},
component: () => import("../views/CheatsView.vue"),
},
],
});