Parse improvements for budget overview.

This commit is contained in:
James Cole
2021-03-28 14:34:02 +02:00
parent 10390953fe
commit 3586c76b95
5 changed files with 77 additions and 64 deletions

View File

@@ -75,9 +75,10 @@ new Vue({
return createElement(Dashboard, {props: props});
},
beforeCreate() {
// TODO migrate to "root" store.
this.$store.commit('initialiseStore');
this.$store.dispatch('updateCurrencyPreference');
this.$store.dispatch('updateListPageSizePreference');
this.$store.dispatch('root/initialiseStore');
this.$store.dispatch('dashboard/index/initialiseStore');
},
});