20 lines
412 B
Vue
20 lines
412 B
Vue
<script setup lang="ts">
|
|
import JobForm from '../Components/Layout/Job/JobForm.vue'
|
|
import JobCard from '../Components/Layout/Job/JobCard.vue'
|
|
import { Job } from "@/types/Jobs/job";
|
|
import { Head } from "@inertiajs/vue3";
|
|
|
|
defineProps<{
|
|
job: Job;
|
|
error?: string;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<Head title="Welcome" />
|
|
|
|
<JobCard :job="job" />
|
|
|
|
<JobForm :job="job" :error="error" />
|
|
</template>
|