chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / Modal.vue
index ab79569ad64dcb02740c9351041d84ea02a397ff..13a4c0b22d441549468adb48ea55b59fb149e41b 100644 (file)
@@ -8,13 +8,13 @@
 
 <script setup lang="ts">
 const props = defineProps<{
-  visibility: boolean;
-}>();
+  visibility: boolean
+}>()
 
-const emit = defineEmits(['close']);
+const emit = defineEmits(['close'])
 
 function close() {
-  emit('close');
+  emit('close')
 }
 </script>