Remove HelloWorld and logging, add Budget page

This commit is contained in:
2022-01-22 16:20:57 +00:00
parent b0ba63118e
commit 1bdd66a45a
5 changed files with 10 additions and 37 deletions

8
web/src/pages/Budget.vue Normal file
View File

@ -0,0 +1,8 @@
<script>
</script>
<template>
<h1>Budget</h1>
</template>

View File

@ -2,7 +2,6 @@
export default {
computed: {
dashboard () {
console.log(this.$store.state);
return this.$store.state;
}
},

View File

@ -1,9 +1,7 @@
<script>
export default {
computed: {
dashboard () {
console.log(this.$store.state);
return this.$store.state;
}
},