Files
DatBrowser/resources/js/Components/ui/job/JobCard.vue
2025-01-30 13:26:48 +01:00

20 lines
421 B
Vue

<script setup lang="ts">
import TitleDescription from "@/Components/Layout/Content/TitleDescription.vue";
import { Job } from "@/types/Jobs/job";
defineProps<{
job: Job;
}>();
</script>
<template>
<TitleDescription>
<template #title>
{{ job.name }}
</template>
<template #description>
{{ job.description }}
</template>
</TitleDescription>
</template>