26 lines
452 B
Vue
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>
|