Galerie hinzugefügt

This commit is contained in:
R40fendt
2025-04-17 11:35:59 +02:00
parent 4bbea4507d
commit c4822b9f37
7 changed files with 199 additions and 16 deletions

View File

@@ -1,11 +1,13 @@
import { createMemoryHistory, createRouter } from 'vue-router'
import { createWebHashHistory, createRouter } from 'vue-router'
import Galerie from "../views/Galerie.vue";
const routes = [
{ path: '/', component: () => import('../views/Main.vue') }
{ path: '/', component: () => import('../views/Main.vue') },
{ path: '/galerie', component: Galerie }
]
export default createRouter({
history: createMemoryHistory(),
history: createWebHashHistory(),
routes,
});