Files
DatBrowser/resources/js/Pages/Job.vue
2025-01-30 13:26:48 +01:00

16 lines
286 B
Vue

<script setup lang="ts">
import JobCard from '../Components/ui/job/JobCard.vue'
import { Job } from "@/types/Jobs/job";
import { Head } from "@inertiajs/vue3";
defineProps<{
job: Job;
}>();
</script>
<template>
<Head title="Welcome" />
<JobCard :job="job" />
</template>