fix(ui): fix missing button imports
[e-mobility-charging-stations-simulator.git] / ui / web / src / router / index.ts
1 import { createRouter, createWebHistory } from 'vue-router'
2 import ChargingStationsView from '@/views/ChargingStationsView.vue'
3
4 export const router = createRouter({
5 history: createWebHistory(),
6 routes: [
7 {
8 path: '/',
9 name: 'charging-stations',
10 components: {
11 default: ChargingStationsView
12 }
13 }
14 ]
15 })