Files
real-estate-app/resources/js/pages/Sale.vue
Kurtis Holsapple ee37c6de85
Some checks failed
linter / quality (push) Failing after 3m48s
tests / ci (push) Failing after 4m13s
initial commit
2025-07-12 15:01:28 -07:00

22 lines
396 B
Vue

<template>
<Layout>
<SaleCard :sale="sale" :detailed="true" />
<Link :href="route('dashboard')">Back</Link>
</Layout>
</template>
<script setup>
import { Link } from '@inertiajs/vue3';
import Layout from '@/layouts/AppLayout.vue';
import SaleCard from '@/components/SaleCard.vue';
const props = defineProps({
sale: {
type: Object,
default: {},
}
});
</script>