mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 03:57:03 -04:00
16 lines
436 B
Vue
16 lines
436 B
Vue
<script setup lang="ts">
|
|
const config = useConfig();
|
|
</script>
|
|
|
|
<template>
|
|
<section v-if="config.links.enabled && config.links.recommended.length">
|
|
<h2 class="mb-3">
|
|
<Icon v="thumbs-up" />
|
|
<T>links.recommended</T>
|
|
</h2>
|
|
<ul class="list-unstyled">
|
|
<LinkEntry v-for="link in config.links.recommended" :key="link.url" :link="link" />
|
|
</ul>
|
|
</section>
|
|
</template>
|