17 lines
356 B
Vue
17 lines
356 B
Vue
<script setup lang="ts">
|
|
import ToolTipRow from "@/Components/FlightsGoneBy/Tooltips/ToolTipRow.vue";
|
|
import {Country} from "@/Types/types";
|
|
|
|
defineProps<{
|
|
country: Country | null | undefined
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<ToolTipRow label="Country" :value="country?.name ?? null" :countryCode="country?.code" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
|
|
</style>
|