Added Notifications
This commit is contained in:
@@ -0,0 +1,18 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user