Files
DredgeTours/resources/js/pages/TourNavigator.vue
2025-09-18 17:41:24 +10:00

26 lines
452 B
Vue

<script setup lang="ts">
import {Tour} from "@/types";
import {usePage} from "@inertiajs/vue3";
import AppLayout from "@/layouts/AppLayout.vue";
interface Properties {
tour: Tour
}
const { tour } = usePage().props as unknown as Properties
defineOptions({
layout: AppLayout
})
</script>
<template>
<section style="padding-top:20dvh;height: 100dvh">
{{tour.short_description}}
</section>
</template>
<style scoped>
</style>