chore: switch coding style to JS standard
[e-mobility-charging-stations-simulator.git] / ui / web / src / components / charging-stations / IdTagInputModal.vue
index 6d2257e3bc7ca6bb0cddcfa13410a370ac8349b0..1839a43c3f746e0d210734d2e5718ddfeffe1431 100644 (file)
 </template>
 
 <script setup lang="ts">
-import Button from '../buttons/Button.vue';
-import Modal from '@/components/Modal.vue';
+import Button from '../buttons/Button.vue'
+import Modal from '@/components/Modal.vue'
 
 const props = defineProps<{
-  visibility: boolean;
-  idTag: string;
-}>();
+  visibility: boolean
+  idTag: string
+}>()
 
-const emit = defineEmits(['done']);
+const emit = defineEmits(['done'])
 
 function done() {
-  emit('done');
+  emit('done')
 }
 </script>