PronounsPage/components/Socials.vue
2021-12-16 18:52:54 +01:00

24 lines
490 B
Vue

<template>
<section v-if="socials.length">
<h2 class="mb-3">
<Icon v="hashtag"/>
<T>links.social</T>
</h2>
<ul class="list-unstyled">
<Link v-for="link in socials" :link="link" :key="link.url"/>
</ul>
</section>
</template>
<script>
import {getSocialLinks} from '../src/contact';
export default {
data() {
return {
socials: [...getSocialLinks(this.config)],
};
},
}
</script>