Skip to content

Instantly share code, notes, and snippets.

@kenrogers
Created July 28, 2018 18:15
Show Gist options
  • Save kenrogers/3e34ec6c42f79e55f0c18f98aa0891f2 to your computer and use it in GitHub Desktop.
Save kenrogers/3e34ec6c42f79e55f0c18f98aa0891f2 to your computer and use it in GitHub Desktop.
<template>
<div>
<section class="section">
<section class="level">
<div class="level-item">
<p class="title">
Transactions
</p>
</div>
<div class="level-item">
<nuxt-link to="/budget">Go to Your Budget <b-icon icon="chevron-right" size="is-small"></b-icon></nuxt-link>
</div>
</section>
</section>
<section class="section">
<div class="container">
<TransactionTable></TransactionTable>
</div>
</section>
</div>
</template>
<script>
import TransactionTable from "~/components/TransactionTable.vue";
export default {
components: {
TransactionTable
}
};
</script>
<style>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment