30 lines
818 B
Vue
30 lines
818 B
Vue
<script setup lang="ts">
|
|
import { Achievement, Airline, Alliance, Flight, User } from '@/Types/types'
|
|
import AllianceChallenge from '@/Components/FlightsGoneBy/AllianceChallenge.vue'
|
|
|
|
defineProps<{
|
|
achievement: Achievement
|
|
user: User
|
|
isFollowing: boolean
|
|
alliance: Alliance
|
|
airlines: Airline[]
|
|
flights: Flight[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<AllianceChallenge
|
|
:achievement="achievement"
|
|
:user="user"
|
|
:isFollowing="isFollowing"
|
|
:alliance="alliance"
|
|
:airlines="airlines"
|
|
:flights="flights"
|
|
>
|
|
<p>
|
|
The <b>Oneworld</b> Alliance is currently the smallest of the big 3 major alliances, but with members all around the world it's no mean feat to get on all of them.
|
|
</p>
|
|
|
|
</AllianceChallenge>
|
|
</template>
|