mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-23 12:43:48 -04:00
26 lines
601 B
Vue
26 lines
601 B
Vue
<template>
|
|
<section v-if="config.links.enabled && config.links.links.length">
|
|
<h2 class="mb-3">
|
|
<Icon v="bookmark" />
|
|
<T>links.headerLong</T>
|
|
</h2>
|
|
<ul class="list-unstyled">
|
|
<LinkEntry v-for="link in config.links.links" :key="link.url" :link="link" />
|
|
</ul>
|
|
</section>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue';
|
|
|
|
import useConfig from '../composables/useConfig.ts';
|
|
|
|
export default defineComponent({
|
|
setup() {
|
|
return {
|
|
config: useConfig(),
|
|
};
|
|
},
|
|
});
|
|
</script>
|