tag: "app"
url: "https://www.reddit.com/r/selfhosted/"
target: "_blank" # optionnal html a tag target attribute
+ - name: "Another one"
+ logo: "assets/tools/sample2.png"
+ subtitle: "Another application"
+ tag: "app"
+ url: "#"
:class="[
`theme-${config.theme}`,
isDark ? 'is-dark' : 'is-light',
- !config.footer ? 'no-footer' : ''
+ !config.footer ? 'no-footer' : '',
]"
>
<DynamicTheme :themes="config.colors" />
SearchInput,
SettingToggle,
DarkMode,
- DynamicTheme
+ DynamicTheme,
},
data: function () {
return {
filter: "",
vlayout: true,
isDark: null,
- showMenu: false
+ showMenu: false,
};
},
created: async function () {
{
name: filter,
icon: "fas fa-search",
- items: searchResultItems
- }
+ items: searchResultItems,
+ },
];
- }
- }
+ },
+ },
};
</script>
card-shadow: rgba(0, 0, 0, 0.4)
link-hover: "#ffdd57"
+message: ~
links: []
services: []
<template>
<a v-on:click="toggleSetting()" class="navbar-item is-inline-block-mobile">
- <span v-show="value"><i :class="['fas', icon]"></i></span>
- <span v-show="!value"><i :class="['fas', iconAlt]"></i></span>
+ <span><i :class="['fas', value ? icon : iconAlt]"></i></span>
<slot></slot>
</a>
</template>
import "./registerServiceWorker";
import "@fortawesome/fontawesome-free/css/all.css";
-import "@fortawesome/fontawesome-free/js/all.js";
import "./assets/app.scss";