feat(project) : add client tickets panel to project page

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
This commit is contained in:
2026-03-15 20:41:28 +01:00
parent ffe4a0117c
commit 49cd971e3e
2 changed files with 343 additions and 0 deletions

View File

@@ -4,6 +4,11 @@
<div class="flex items-center justify-between gap-3">
<h1 class="text-xl font-bold text-primary-500 sm:text-2xl">{{ project?.name ?? '' }}</h1>
<div class="flex items-center gap-2">
<ProjectClientTickets
v-if="project"
:project-id="projectId"
:project-name="project.name"
/>
<button
class="shrink-0 rounded-md bg-primary-500 px-3 py-2 text-xs font-semibold text-white hover:bg-secondary-500 sm:px-4 sm:text-sm"
@click="openTaskCreate"