🔥 Use VueX store instead of props for router

This commit is contained in:
Alicia Sykes
2021-10-09 19:42:51 +01:00
parent 5e6f78e6e7
commit 0e5eca1b7b
8 changed files with 45 additions and 42 deletions

View File

@@ -71,10 +71,16 @@ export default {
IconWorkspaceView,
IconMinimalView,
},
props: {
sections: Array,
pageInfo: Object,
appConfig: Object,
computed: {
sections() {
return this.$store.getters.sections;
},
appConfig() {
return this.$store.getters.appConfig;
},
pageInfo() {
return this.$store.getters.pageInfo;
},
},
methods: {
showEditor: function show() {