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