Init commit
This commit is contained in:
19
resources/js/Components/ui/job/JobCard.vue
Normal file
19
resources/js/Components/ui/job/JobCard.vue
Normal file
@ -0,0 +1,19 @@
|
||||
<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>
|
Reference in New Issue
Block a user