mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-29 16:04:38 -04:00
28 lines
492 B
Vue
28 lines
492 B
Vue
<template>
|
|
<Page>
|
|
<LinksNav />
|
|
|
|
<Media />
|
|
|
|
<Socials />
|
|
<Separator icon="heart" />
|
|
<Support />
|
|
<section>
|
|
<Share :title="$t('links.social')" />
|
|
</section>
|
|
</Page>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import Vue from 'vue';
|
|
import { head } from '../src/helpers.ts';
|
|
|
|
export default Vue.extend({
|
|
head() {
|
|
return head({
|
|
title: this.$t('links.media'),
|
|
}, this.$translator);
|
|
},
|
|
});
|
|
</script>
|