mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-08-05 03:57:03 -04:00
10 lines
269 B
Vue
10 lines
269 B
Vue
<script setup lang="ts">
|
|
const config = useConfig();
|
|
</script>
|
|
|
|
<template>
|
|
<ul v-if="config.links.names && config.links.names.length" class="list-unstyled">
|
|
<LinkEntry v-for="link in config.links.names" :key="link.url" :link="link" />
|
|
</ul>
|
|
</template>
|