c3lf-system-3/src/App.vue

101 lines
3.8 KiB
Vue
Raw Normal View History

2019-11-13 21:02:44 +00:00
<template>
2019-11-13 22:21:19 +00:00
<div id="app">
2019-11-14 02:59:17 +00:00
<Navbar/>
2019-11-14 01:22:20 +00:00
<div class="input-group mt-2 mx-2">
<input type="text" class="form-control" placeholder="Recipient's username" aria-label="Recipient's username with two button addons" aria-describedby="button-addon4">
<div class="input-group-append" id="button-addon4">
<button class="btn btn-outline-secondary" type="button">Button</button>
<button class="btn btn-outline-secondary" type="button">Button</button>
</div>
</div>
<div class="container mt-2">
<table class="table table-striped table-dark">
<thead>
<tr>
<th scope="col">#</th>
<th scope="col">First</th>
<th scope="col">Last</th>
<th scope="col">Handle</th>
<th scope="col">Buttons</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">1</th>
<td>Mark</td>
<td>Otto</td>
<td>@mdo</td>
<td>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<button class="btn btn-success active">
<font-awesome-icon icon="check-circle"/>
</button>
<button class="btn btn-secondary active">
<font-awesome-icon icon="edit"/>
</button>
<button class="btn btn-danger active">
<font-awesome-icon icon="trash"/>
</button>
</div>
</td>
</tr>
<tr>
<th scope="row">2</th>
<td>Jacob</td>
<td>Thornton</td>
<td>@fat</td>
<td>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<button class="btn btn-success active">
<font-awesome-icon icon="check-circle"/>
</button>
<button class="btn btn-secondary active">
<font-awesome-icon icon="edit"/>
</button>
<button class="btn btn-danger active">
<font-awesome-icon icon="trash"/>
</button>
</div>
</td>
</tr>
<tr>
<th scope="row">3</th>
<td>Larry</td>
<td>the Bird</td>
<td>@twitter</td>
<td>
<div class="btn-group btn-group-toggle" data-toggle="buttons">
<button class="btn btn-success active">
<font-awesome-icon icon="check-circle"/>
</button>
<button class="btn btn-secondary active">
<font-awesome-icon icon="edit"/>
</button>
<button class="btn btn-danger active">
<font-awesome-icon icon="trash"/>
</button>
</div>
</td>
</tr>
</tbody>
</table>
</div>
2019-11-13 22:21:19 +00:00
</div>
2019-11-13 21:02:44 +00:00
</template>
<script>
2019-11-14 02:59:17 +00:00
import Navbar from '@/components/Navbar';
2019-11-13 21:02:44 +00:00
export default {
2019-11-14 01:22:20 +00:00
name: 'app',
2019-11-14 02:59:17 +00:00
components: {Navbar},
2019-11-13 21:21:47 +00:00
};
2019-11-13 21:02:44 +00:00
</script>
<style>
2019-11-14 01:22:20 +00:00
body, html, #app {
background: #222;
}
2019-11-13 21:02:44 +00:00
</style>