chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / main.ts
1 import { createApp } from 'vue'
2 import App from './App.vue'
3 import router from './router'
4
5 createApp(App).use(router).mount('#app')