This repository has been archived on 2024-07-22. You can view files and clone it, but cannot push or open issues or pull requests.
2020-09-24 12:38:15 -07:00
|
|
|
<template>
|
2021-12-16 04:10:54 -08:00
|
|
|
<section v-if="socials.length">
|
2021-08-18 09:08:02 -07:00
|
|
|
<h2 class="mb-3">
|
2020-09-24 12:38:15 -07:00
|
|
|
<Icon v="hashtag"/>
|
2020-09-28 08:51:26 -07:00
|
|
|
<T>links.social</T>
|
2020-09-24 12:38:15 -07:00
|
|
|
</h2>
|
|
|
|
<ul class="list-unstyled">
|
2021-12-16 04:10:54 -08:00
|
|
|
<Link v-for="link in socials" :link="link" :key="link.url"/>
|
2020-09-24 12:38:15 -07:00
|
|
|
</ul>
|
|
|
|
</section>
|
|
|
|
</template>
|
2021-12-16 04:10:54 -08:00
|
|
|
|
|
|
|
<script>
|
|
|
|
import {getSocialLinks} from '../src/contact';
|
|
|
|
|
|
|
|
export default {
|
|
|
|
data() {
|
|
|
|
return {
|
|
|
|
socials: [...getSocialLinks(this.config)],
|
|
|
|
};
|
|
|
|
},
|
|
|
|
}
|
|
|
|
</script>
|