diff --git a/src/App.vue b/src/App.vue index 7db952a..ab509a9 100644 --- a/src/App.vue +++ b/src/App.vue @@ -24,6 +24,15 @@ export default { navbar, options }, + created(){ + const userSettings = localStorage.getItem('settings'); + + if (userSettings) { + const settings = JSON.parse(userSettings); + this.$store.commit('set_settings', settings); + } + + } }