Galerie hinzugefügt
This commit is contained in:
@@ -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,
|
||||
});
|
||||
Reference in New Issue
Block a user