Use props for budgetid

This commit is contained in:
Jan Bader 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)
}
}

View File

@ -9,7 +9,7 @@ const routes = [
{ path: '/dashboard', name: 'Dashboard', component: Dashboard },
{ path: '/login', name: 'Login', component: Login },
{ path: '/register', name: 'Register', component: Register },
{ path: '/budget/:budgetid', name: 'Budget', components: {default: Dashboard, sidebar: BudgetSidebar } },
{ path: '/budget/:budgetid', name: 'Budget', components: {default: Dashboard, sidebar: BudgetSidebar}, props: true },
]
const router = createRouter({