Adding Seat plan component and database tables
This commit is contained in:
22
software/src/components/seatPlanMap/seatGroupTable.vue
Normal file
22
software/src/components/seatPlanMap/seatGroupTable.vue
Normal file
@@ -0,0 +1,22 @@
|
||||
<script setup lang="ts">
|
||||
import { SeatRowModel } from '@/data/models/locations/seatRowModel';
|
||||
|
||||
defineProps({
|
||||
seatRows: Array<SeatRowModel>,
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<table>
|
||||
<tbody>
|
||||
<tr v-for="seatRow in seatRows">
|
||||
<td v-for="seats in seatRow.seats">
|
||||
<v-btn
|
||||
variant="text"
|
||||
icon="mdi-seat"
|
||||
/>
|
||||
</td>
|
||||
</tr>
|
||||
</tbody>
|
||||
</table>
|
||||
</template>
|
||||
Reference in New Issue
Block a user