diff options
Diffstat (limited to 'src/App.vue')
-rw-r--r-- | src/App.vue | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/src/App.vue b/src/App.vue index f7fd34a..a356997 100644 --- a/src/App.vue +++ b/src/App.vue | |||
@@ -5,7 +5,7 @@ | |||
5 | :class="[ | 5 | :class="[ |
6 | `theme-${config.theme}`, | 6 | `theme-${config.theme}`, |
7 | isDark ? 'is-dark' : 'is-light', | 7 | isDark ? 'is-dark' : 'is-light', |
8 | !config.footer ? 'no-footer' : '' | 8 | !config.footer ? 'no-footer' : '', |
9 | ]" | 9 | ]" |
10 | > | 10 | > |
11 | <DynamicTheme :themes="config.colors" /> | 11 | <DynamicTheme :themes="config.colors" /> |
@@ -132,7 +132,7 @@ export default { | |||
132 | SearchInput, | 132 | SearchInput, |
133 | SettingToggle, | 133 | SettingToggle, |
134 | DarkMode, | 134 | DarkMode, |
135 | DynamicTheme | 135 | DynamicTheme, |
136 | }, | 136 | }, |
137 | data: function () { | 137 | data: function () { |
138 | return { | 138 | return { |
@@ -142,7 +142,7 @@ export default { | |||
142 | filter: "", | 142 | filter: "", |
143 | vlayout: true, | 143 | vlayout: true, |
144 | isDark: null, | 144 | isDark: null, |
145 | showMenu: false | 145 | showMenu: false, |
146 | }; | 146 | }; |
147 | }, | 147 | }, |
148 | created: async function () { | 148 | created: async function () { |
@@ -205,10 +205,10 @@ export default { | |||
205 | { | 205 | { |
206 | name: filter, | 206 | name: filter, |
207 | icon: "fas fa-search", | 207 | icon: "fas fa-search", |
208 | items: searchResultItems | 208 | items: searchResultItems, |
209 | } | 209 | }, |
210 | ]; | 210 | ]; |
211 | } | 211 | }, |
212 | } | 212 | }, |
213 | }; | 213 | }; |
214 | </script> | 214 | </script> |