BuLi-Tipp weiter gemacht

This commit is contained in:
R40fendt
2025-04-23 12:29:36 +02:00
parent f450567cc7
commit 6bc82f96a2
6 changed files with 404 additions and 164 deletions

View 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>