🎨 Improve code readability by reformatting and updating function definitions and comments

This commit is contained in:
2026-01-28 18:18:55 +00:00
parent 1944b43af8
commit a24f766e37
154 changed files with 7261 additions and 117 deletions

View File

@@ -0,0 +1,41 @@
import { createRouter, createWebHistory } from 'vue-router';
import Home from '../views/Home.vue';
import GamemasterManager from '../views/GamemasterManager.vue';
import ChallongeTest from '../views/ChallongeTest.vue';
import ApiKeyManager from '../views/ApiKeyManager.vue';
import OAuthCallback from '../views/OAuthCallback.vue';
const routes = [
{
path: '/',
name: 'Home',
component: Home
},
{
path: '/gamemaster',
name: 'GamemasterManager',
component: GamemasterManager
},
{
path: '/challonge-test',
name: 'ChallongeTest',
component: ChallongeTest
},
{
path: '/api-key-manager',
name: 'ApiKeyManager',
component: ApiKeyManager
},
{
path: '/oauth/callback',
name: 'OAuthCallback',
component: OAuthCallback
}
];
const router = createRouter({
history: createWebHistory(),
routes
});
export default router;