add some CSS to the customers table

This commit is contained in:
Andreas Zweili 2021-01-26 22:34:39 +01:00
parent 73cf9d84c6
commit 71cdf24aeb

View File

@ -1,16 +1,22 @@
<template> <template>
<table> <div class="row">
<tr> <div class="col">
<th>Customer</th> <div class="table-container">
<th>Description</th> <table class="table table-hover table-bordered">
</tr> <tr>
<tr v-for="customer in customers" :key="customer.id"> <th class="orderable">Customer</th>
<td> <th>Description</th>
{{ customer.name }} </tr>
</td> <tr v-for="customer in customers" :key="customer.id">
<td>{{ customer.description }}</td> <td>
</tr> {{ customer.name }}
</table> </td>
<td>{{ customer.description }}</td>
</tr>
</table>
</div>
</div>
</div>
</template> </template>
<script> <script>