Skip to content

Commit

Permalink
sorted pages to views, routes
Browse files Browse the repository at this point in the history
  • Loading branch information
AFEDev committed Jun 1, 2022
1 parent af4d71a commit e3bcb5b
Showing 1 changed file with 50 additions and 0 deletions.
50 changes: 50 additions & 0 deletions src/views/HistoryView.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,50 @@
<template>
<div>
<div class="page-title">
<h3>History</h3>
</div>

<div class="history-chart">
<canvas></canvas>
</div>

<section>
<table>
<thead>
<tr>
<th>#</th>
<th>Sum</th>
<th>Date</th>
<th>Category</th>
<th>Type</th>
<th>Open</th>
</tr>
</thead>

<tbody>
<tr>
<td>1</td>
<td>1212</td>
<td>12.12.32</td>
<td>name</td>
<td>
<span class="white-text badge red">Expenses</span>
</td>
<td>
<button class="btn-small btn">
<i class="material-icons">open_in_new</i>
</button>
</td>
</tr>
</tbody>
</table>
</section>
</div>

</template>

<script>
export default {
name: "HistoryView",
}
</script>

0 comments on commit e3bcb5b

Please sign in to comment.