Rebuild front with some vuex storage.

This commit is contained in:
James Cole
2020-12-22 17:22:50 +01:00
parent 7530effcaa
commit 1a8fd25ec3
20 changed files with 188 additions and 91 deletions

View File

@@ -104,11 +104,15 @@ export default {
props: {
budgetLimit: {
type: Object,
default: {}
default: function () {
return {};
}
},
budget: {
type: Object,
default: {}
default: function () {
return {};
}
}
}
}