Use props for budgetid

This commit is contained in:
2022-01-25 12:54:25 +00:00
parent 626e0ada40
commit a2cc19d310
2 changed files with 3 additions and 3 deletions

View File

@ -1,8 +1,8 @@
<script>
export default {
props: ['budgetid'],
mounted () {
const budgetid = this.$route.params.budgetid;
this.$store.dispatch("setCurrentBudget", budgetid)
this.$store.dispatch("setCurrentBudget", this.budgetid)
}
}