27 lines
651 B
Vue
27 lines
651 B
Vue
<script setup lang="ts">
|
|
import { usePage } from "@inertiajs/vue3";
|
|
import AppLayout from "@/layouts/AppLayout.vue";
|
|
import TourOverviewSection from "./TourOverviewSection.vue";
|
|
import type {Tour, TourDay} from "@/types";
|
|
import TourQuickFacts from "@/components/TourNavigator/TourQuickFacts.vue";
|
|
import SectionTitle from "@/components/dredgy/SectionTitle.vue";
|
|
|
|
interface Properties {
|
|
tour: Tour;
|
|
tourDay: TourDay
|
|
}
|
|
|
|
const { tour, tourDay} = usePage().props as unknown as Properties;
|
|
|
|
defineOptions({
|
|
layout: AppLayout,
|
|
});
|
|
</script>
|
|
|
|
<template>
|
|
<TourOverviewSection :tourDay="tourDay" :tour="tour" />
|
|
</template>
|
|
|
|
<style scoped>
|
|
</style>
|