BuLi-Tipp weiter gemacht
This commit is contained in:
55
src/components/bulitipp/Paarungsergebnisse.vue
Normal file
55
src/components/bulitipp/Paarungsergebnisse.vue
Normal file
@@ -0,0 +1,55 @@
|
||||
<script lang="ts">
|
||||
export default {
|
||||
props: {
|
||||
paarungen: {
|
||||
type: Array,
|
||||
required: true
|
||||
},
|
||||
teams: {
|
||||
type: Array,
|
||||
required: true
|
||||
}
|
||||
}
|
||||
}
|
||||
</script>
|
||||
<template>
|
||||
<section class="buli-results scroll-x" id="buliresults-section">
|
||||
<br /><br />
|
||||
<h2>Paarungsergebnisse . Spieltag</h2>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr>
|
||||
<td>Paarung</td>
|
||||
<td>Ergebnis</td>
|
||||
</tr>
|
||||
<tr v-for="paarung in paarungen">
|
||||
<td>
|
||||
<!-- Modal -->
|
||||
<!--
|
||||
<iframe frameborder="0"></iframe> -->
|
||||
<span class="as-link">
|
||||
<span class="teams">
|
||||
<span class="team">
|
||||
<img src="" alt="" />
|
||||
<p>{{ teams[paarung.team1].name }}</p>
|
||||
</span>
|
||||
<span class="vs"></span>
|
||||
<span class="team">
|
||||
<p>{{ teams[paarung.team2].name }}</p>
|
||||
<img src="" alt="" />
|
||||
</span>
|
||||
</span>
|
||||
</span>
|
||||
</td>
|
||||
<td>
|
||||
<p>{{ paarung.result1 }} - {{ paarung.result2 }}</p>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</section>
|
||||
</template>
|
||||
<style scoped>
|
||||
|
||||
@import "../../assets/css/bulitipp2.css";
|
||||
</style>
|
||||
Reference in New Issue
Block a user