Fix diverse errors

This commit is contained in:
2022-01-31 21:45:02 +00:00
parent b350fe7d74
commit 9353d82648
3 changed files with 32 additions and 28 deletions

View File

@ -1,4 +1,5 @@
<script>
<script>import { NEW_BUDGET } from "../store/action-types";
export default {
data () {
return {
@ -8,7 +9,7 @@
},
methods: {
saveBudget () {
this.$store.dispatch("newBudget", this.$data.budgetName);
this.$store.dispatch(NEW_BUDGET, this.$data.budgetName);
this.$data.dialog = false;
},
newBudget () {