X-Git-Url: https://git.immae.eu/?a=blobdiff_plain;ds=sidebyside;f=src%2FApp.vue;h=8185da212c260f672ec5defd9957349a918c6d63;hb=10ea23a01d822714eb5c55ac46b808064fd1f600;hp=f7fd34adc30729e6b40790cb6141aea2fe427d52;hpb=b9c5fcf085bed9c6100283133531b36bfbb06cf0;p=github%2Fbastienwirtz%2Fhomer.git diff --git a/src/App.vue b/src/App.vue index f7fd34a..8185da2 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' : '', ]" > @@ -13,7 +13,7 @@
@@ -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 () { @@ -151,8 +151,6 @@ export default { let config = await this.getConfig(); this.config = merge(defaults, config); - - console.log(this.config); this.services = this.config.services; document.title = `${this.config.title} | ${this.config.subtitle}`; } catch (error) { @@ -205,10 +203,10 @@ export default { { name: filter, icon: "fas fa-search", - items: searchResultItems - } + items: searchResultItems, + }, ]; - } - } + }, + }, };