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>
<table>
<tr>
<th>Customer</th>
<th>Description</th>
</tr>
<tr v-for="customer in customers" :key="customer.id">
<td>
{{ customer.name }}
</td>
<td>{{ customer.description }}</td>
</tr>
</table>
<div class="row">
<div class="col">
<div class="table-container">
<table class="table table-hover table-bordered">
<tr>
<th class="orderable">Customer</th>
<th>Description</th>
</tr>
<tr v-for="customer in customers" :key="customer.id">
<td>
{{ customer.name }}
</td>
<td>{{ customer.description }}</td>
</tr>
</table>
</div>
</div>
</div>
</template>
<script>