24 lines
424 B
Vue
24 lines
424 B
Vue
<template>
|
|
<div class="container">
|
|
<Links top/>
|
|
<Media/>
|
|
<Socials/>
|
|
|
|
<section>
|
|
<Share :title="$t('links.headerLong')"/>
|
|
</section>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { head } from "../src/helpers";
|
|
|
|
export default {
|
|
head() {
|
|
return head({
|
|
title: this.$t('links.headerLong'),
|
|
});
|
|
},
|
|
};
|
|
</script>
|