|
15 | 15 | @row-clicked="openTeamDialog"
|
16 | 16 | :tbody-tr-class="highLightWinner"
|
17 | 17 | >
|
18 |
| - <template slot="smallRank" slot-scope="row"> |
19 |
| - {{ row.item.times[0].rank }} |
| 18 | + <template v-slot:cell(smallRank)="data"> |
| 19 | + {{ data.item.times[0].rank }} |
20 | 20 | </template>
|
21 |
| - <template slot="HEAD_OarImage"> |
| 21 | + <template v-slot:head(OarImage)> |
22 | 22 | <div class="d-none d-sm-block">
|
23 | 23 | Blad
|
24 | 24 | </div>
|
25 | 25 | </template>
|
26 |
| - <template slot="OarImage" slot-scope="row"> |
27 |
| - <OarImage :club="row.item.clubnameshort"></OarImage> |
| 26 | + <template v-slot:cell(OarImage)="data"> |
| 27 | + <OarImage :club="data.item.clubnameshort"></OarImage> |
28 | 28 | </template>
|
29 |
| - <template slot="FinishTime" slot-scope="row"> |
| 29 | + <template v-slot:cell(FinishTime)="data"> |
30 | 30 | <FinalTime
|
31 |
| - :time="getFinishTime(row.item.times[0].times)" |
32 |
| - :bonus-seconds="row.item.times[0].bonussecond" |
33 |
| - :status="row.item.times[0].status" |
| 31 | + :time="getFinishTime(data.item.times[0].times)" |
| 32 | + :bonus-seconds="data.item.times[0].bonussecond" |
| 33 | + :status="data.item.times[0].status" |
34 | 34 | ></FinalTime>
|
35 | 35 | </template>
|
36 |
| - <template slot="FinishTimeSmall" slot-scope="row"> |
| 36 | + <template v-slot:cell(FinishTimeSmall)="data"> |
37 | 37 | <FinalTime
|
38 |
| - :time="getFinishTime(row.item.times[0].times)" |
39 |
| - :bonus-seconds="row.item.times[0].bonussecond" |
40 |
| - :status="row.item.times[0].status" |
| 38 | + :time="getFinishTime(data.item.times[0].times)" |
| 39 | + :bonus-seconds="data.item.times[0].bonussecond" |
| 40 | + :status="data.item.times[0].status" |
41 | 41 | ></FinalTime>
|
42 | 42 | </template>
|
43 | 43 | </b-table>
|
@@ -87,9 +87,6 @@ export default {
|
87 | 87 | fieldName() {
|
88 | 88 | return this.crews[0].fieldnameshort;
|
89 | 89 | },
|
90 |
| - splashes() { |
91 |
| - return findClockingLocations(this.crews); |
92 |
| - }, |
93 | 90 | fields() {
|
94 | 91 | return [
|
95 | 92 | {
|
|
0 commit comments