This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
Zaimki/components/Recommended.vue

12 lines
341 B
Vue

<template>
<section v-if="config.links.recommended.length">
<h2 class="mb-3">
<Icon v="thumbs-up"/>
<T>links.recommended</T>
</h2>
<ul class="list-unstyled">
<Link v-for="link in config.links.recommended" :link="link" :key="link.url"/>
</ul>
</section>
</template>