19 lines
606 B
Vue
19 lines
606 B
Vue
<script setup lang="ts">
|
|
import GlassBox from "@/Components/FlightsGoneBy/GlassBox.vue";
|
|
import { Head } from "@inertiajs/vue3";
|
|
import {MissingLivery} from "@/Types/types";
|
|
import MissingLiveryCard from "@/Components/Admin/MissingLiveryCard.vue";
|
|
import AdminLayout from "@/Pages/Admin/AdminLayout.vue";
|
|
import Panel from "@/Components/FlightsGoneBy/Panels/Panel.vue";
|
|
|
|
defineOptions({ layout: AdminLayout });
|
|
|
|
defineProps<{
|
|
missingLiveries: MissingLivery[]
|
|
}>()
|
|
</script>
|
|
|
|
<template>
|
|
<MissingLiveryCard v-for="livery in missingLiveries" :key="livery.filename" :livery="livery" />
|
|
</template>
|