diff --git a/src/App.vue b/src/App.vue index 1e1987b..580e3c7 100644 --- a/src/App.vue +++ b/src/App.vue @@ -20,10 +20,10 @@ export default { }, computed: { title() { - return this.$store.getters.ui.title; + return this.$store.state.ui.title; }, backgroundColor() { - return this.$store.getters.ui.backgroundColor; + return this.$store.state.ui.backgroundColor; }, }, data() { diff --git a/src/components/NavigationDrawer.vue b/src/components/NavigationDrawer.vue index fe396fa..984bfd8 100644 --- a/src/components/NavigationDrawer.vue +++ b/src/components/NavigationDrawer.vue @@ -44,7 +44,7 @@