blob: 0547ad1930fcfd882f1a6a5399ccd5fca04253a8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
<template>
<table>
<tr v-for="trial in trials" :key="trial">
<Trial :length="length" :trial="trial" :finished="true" />
</tr>
<tr>
<Trial :length="length" :trial="currentTrial" :finished="false" />
</tr>
</table>
</template>
<script setup lang="ts">
import Trial from "@/components/Trial.vue";
defineProps<{
length: number;
currentTrial: string;
}>();
let trials = [];
</script>
<style scoped></style>
|