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