Bereinigen und Entfernen von nicht mehr benötigten TinyMCE-Dateien und -Plugins; Aktualisierung der Internationalisierung für Deutsch und Englisch in den Falukant- und Navigationsmodulen; Verbesserung der Statusleiste und Router-Implementierung.
This commit is contained in:
@@ -7,6 +7,7 @@ import settingsRoutes from './settingsRoutes';
|
||||
import adminRoutes from './adminRoutes';
|
||||
import falukantRoutes from './falukantRoutes';
|
||||
import blogRoutes from './blogRoutes';
|
||||
import minigamesRoutes from './minigamesRoutes';
|
||||
|
||||
const routes = [
|
||||
{
|
||||
@@ -20,6 +21,7 @@ const routes = [
|
||||
...adminRoutes,
|
||||
...falukantRoutes,
|
||||
...blogRoutes,
|
||||
...minigamesRoutes,
|
||||
];
|
||||
|
||||
const router = createRouter({
|
||||
|
||||
12
frontend/src/router/minigamesRoutes.js
Normal file
12
frontend/src/router/minigamesRoutes.js
Normal file
@@ -0,0 +1,12 @@
|
||||
import Match3Game from '../views/minigames/Match3Game.vue';
|
||||
|
||||
const minigamesRoutes = [
|
||||
{
|
||||
path: '/minigames/match3',
|
||||
name: 'Match3Game',
|
||||
component: Match3Game,
|
||||
meta: { requiresAuth: true }
|
||||
}
|
||||
];
|
||||
|
||||
export default minigamesRoutes;
|
||||
Reference in New Issue
Block a user