Add some subtasks
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m11s
All checks were successful
Build BAB Application Deployment Artifact / build (push) Successful in 2m11s
This commit is contained in:
@@ -4,16 +4,23 @@
|
|||||||
<q-item v-for="task in tasks" :key="task.id">
|
<q-item v-for="task in tasks" :key="task.id">
|
||||||
<q-item-section>
|
<q-item-section>
|
||||||
<q-item-label>{{ task.title }}</q-item-label>
|
<q-item-label>{{ task.title }}</q-item-label>
|
||||||
<q-item-label caption lines="2"
|
<q-item-label caption lines="2">{{ task.description }} </q-item-label>
|
||||||
>Secondary line text. Lorem ipsum dolor sit amet, consectetur
|
|
||||||
adipiscit elit.</q-item-label
|
|
||||||
>
|
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
|
||||||
<q-item-section side top>
|
<q-item-section side top>
|
||||||
<q-item-label caption>5 min ago</q-item-label>
|
<q-item-label caption>Due: {{ task.dueDate }}</q-item-label>
|
||||||
<q-icon name="star" color="yellow" />
|
<q-icon name="star" color="yellow" />
|
||||||
</q-item-section>
|
</q-item-section>
|
||||||
|
<q-expansion-item
|
||||||
|
:header-inset-level="1"
|
||||||
|
expand-separator
|
||||||
|
label="Subtasks"
|
||||||
|
default-opened
|
||||||
|
><TaskList
|
||||||
|
v-if="task.subtasks && task.subtasks.length"
|
||||||
|
:tasks="task.subtasks"
|
||||||
|
/>
|
||||||
|
</q-expansion-item>
|
||||||
</q-item>
|
</q-item>
|
||||||
|
|
||||||
<q-separator spaced inset />
|
<q-separator spaced inset />
|
||||||
|
|||||||
Reference in New Issue
Block a user