diff options
author | Aryess <yoann.celton@gmail.com> | 2021-10-12 11:28:41 +1100 |
---|---|---|
committer | Aryess <yoann.celton@gmail.com> | 2021-10-12 11:37:24 +1100 |
commit | 5db2414d052af629e2848f53ce9c2e0e686eefaf (patch) | |
tree | 99e332d6481ecd777dfc3b1223dce4dc8dd01c68 /src/components/SettingToggle.vue | |
parent | c72acd57d0a61632b6c03e2d9c7321e25dc611fa (diff) | |
download | homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.tar.gz homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.tar.zst homer-5db2414d052af629e2848f53ce9c2e0e686eefaf.zip |
Fix #121 - Change default theme and layout from config
Diffstat (limited to 'src/components/SettingToggle.vue')
-rw-r--r-- | src/components/SettingToggle.vue | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/components/SettingToggle.vue b/src/components/SettingToggle.vue index 985ca84..6c8a10f 100644 --- a/src/components/SettingToggle.vue +++ b/src/components/SettingToggle.vue | |||
@@ -12,6 +12,7 @@ export default { | |||
12 | name: String, | 12 | name: String, |
13 | icon: String, | 13 | icon: String, |
14 | iconAlt: String, | 14 | iconAlt: String, |
15 | defaultValue: Boolean, | ||
15 | }, | 16 | }, |
16 | data: function () { | 17 | data: function () { |
17 | return { | 18 | return { |
@@ -24,6 +25,8 @@ export default { | |||
24 | 25 | ||
25 | if (this.name in localStorage) { | 26 | if (this.name in localStorage) { |
26 | this.value = JSON.parse(localStorage[this.name]); | 27 | this.value = JSON.parse(localStorage[this.name]); |
28 | } else { | ||
29 | this.value = this.defaultValue; | ||
27 | } | 30 | } |
28 | 31 | ||
29 | this.$emit("updated", this.value); | 32 | this.$emit("updated", this.value); |