15 lines
290 B
Vue
15 lines
290 B
Vue
<script setup lang="ts">
|
|
import MainNavItem from "@/Components/Layout/MainNav/MainNavItem.vue";
|
|
import { Job } from "@/types/Jobs/job";
|
|
|
|
defineProps<{
|
|
job: Job;
|
|
}>();
|
|
</script>
|
|
|
|
<template>
|
|
<MainNavItem :link="`/job/${job.id}`">
|
|
{{ job.name }}
|
|
</MainNavItem>
|
|
</template>
|