Files
TLA/resources/js/router/index.js
T
Belupeti 7bb26eeb43
Build / Build-image (push) Failing after 5s
init 2
2026-08-08 23:51:17 +02:00

19 lines
369 B
JavaScript

import { createRouter, createWebHistory } from 'vue-router';
import App from '../App.vue';
import HomeView from '../pages/HomeView.vue';
const routes = [
{ path: '/',
children:
[
{ path: '', component: HomeView },
]
}
];
const router = createRouter({
history: createWebHistory(),
routes,
});
export default router;