From 9814a037a5158d31c77fecc8bfb3b61b45d015b3 Mon Sep 17 00:00:00 2001 From: Bastien Wirtz Date: Fri, 29 May 2020 18:21:32 -0700 Subject: Pure CSS font awesome icon --- src/App.vue | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) (limited to 'src/App.vue') 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 @@ :class="[ `theme-${config.theme}`, isDark ? 'is-dark' : 'is-light', - !config.footer ? 'no-footer' : '' + !config.footer ? 'no-footer' : '', ]" > @@ -132,7 +132,7 @@ export default { SearchInput, SettingToggle, DarkMode, - DynamicTheme + DynamicTheme, }, data: function () { return { @@ -142,7 +142,7 @@ export default { filter: "", vlayout: true, isDark: null, - showMenu: false + showMenu: false, }; }, created: async function () { @@ -205,10 +205,10 @@ export default { { name: filter, icon: "fas fa-search", - items: searchResultItems - } + items: searchResultItems, + }, ]; - } - } + }, + }, }; -- cgit v1.2.3