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