feat: job application modal

This commit is contained in:
Jannat Patel
2024-02-19 16:54:07 +05:30
parent 084eeba2ed
commit 36c4e2f4dc
5 changed files with 64 additions and 11 deletions

View File

@@ -23,7 +23,7 @@
</template>
{{ __('Report') }}
</Button>
<Button variant="solid">
<Button variant="solid" @click="openApplicationModal()">
<template #prefix>
<SendHorizonal class="h-4 w-4" />
</template>
@@ -96,4 +96,8 @@ const job = createResource({
cache: ['job', props.job],
auto: true,
})
const openApplicationModal = () => {
console.log('openApplicationModal')
}
</script>