@inkline/inkline
Version:
Inkline is the Vue.js UI/UX Library built for creating your next design system
31 lines (30 loc) • 654 B
HTML
<i-table>
<thead>
<tr>
<th>#</th>
<th>First Name</th>
<th>Last Name</th>
<th>Username</th>
</tr>
</thead>
<tbody>
<tr>
<th scope="row">#</th>
<td>Alex</td>
<td>Grozav</td>
<td>@alexgrozav</td>
</tr>
<tr>
<th scope="row">#</th>
<td>John</td>
<td>Doe</td>
<td>@johndoe</td>
</tr>
<tr>
<th scope="row">#</th>
<td>Alice</td>
<td>Doe</td>
<td>@alicecooper</td>
</tr>
</tbody>
</i-table>