refactor: cleanup imports
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
CommitLineData
0f71040c 1import { createRouter, createWebHistory, type RouteRecordRaw } from 'vue-router';
32de5a57
LM
2import ChargingStationsView from '@/views/ChargingStationsView.vue';
3
5f7e72c1 4const routes: RouteRecordRaw[] = [
32de5a57
LM
5 {
6 path: '/',
7 name: 'charging-stations',
8 component: ChargingStationsView,
9 },
10];
11
12const router = createRouter({
13 history: createWebHistory(process.env.BASE_URL),
14 routes,
15});
16
17export default router;