PronounsPage/components/NamesLinks.vue
Valentyne Stigloher b25afefc49 (fmt)
2024-10-29 10:56:32 +01:00

20 lines
448 B
Vue

<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>
<script lang="ts">
import { defineComponent } from 'vue';
import useConfig from '../composables/useConfig.ts';
export default defineComponent({
setup() {
return {
config: useConfig(),
};
},
});
</script>