You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.2 KiB
Vue
34 lines
1.2 KiB
Vue
<template>
|
|
<div class="container">
|
|
<div class="row">
|
|
<div class="col-sm-10">
|
|
<h1>Books</h1>
|
|
<hr>
|
|
<br><br>
|
|
<button type="button" class="btn btn-success btn-sm">Add Book</button>
|
|
<br><br>
|
|
<table class="table table-hover">
|
|
<thead>
|
|
<tr>
|
|
<th scope="col">Title</th>
|
|
<th scope="col">Author</th>
|
|
<th scope="col">Read?</th>
|
|
<th></th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr>
|
|
<td>foo</td>
|
|
<td>bar</td>
|
|
<td>foobar</td>
|
|
<td>
|
|
<button type="button" class="btn btn-warning btn-sm">Update</button>
|
|
<button type="button" class="btn btn-danger btn-sm">Delete</button>
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</template> |