init the start of a record

This commit is contained in:
Julien Calixte
2023-04-10 16:16:08 +02:00
parent 531a05be26
commit a934c51a2e
7 changed files with 100 additions and 1 deletions

View File

@@ -1,4 +1,5 @@
<script setup lang="ts">
import TaskRecordList from '@/modules/record/components/TaskRecordList.vue'
import { useTaskStore } from '@/modules/task/stores/useTask.store'
import { computed } from 'vue'
@@ -27,6 +28,7 @@ const task = computed(() => taskStore.getTask(props.id))
<div>{{ step.title }} | {{ step.estimation }}</div>
</li>
</ul>
<task-record-list :task-id="id" />
</div>
<div v-else>Task not found</div>
</template>