20 lines
421 B
Vue
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>
|