mirror of
https://gitlab.com/PronounsPage/PronounsPage.git
synced 2025-09-28 23:42:58 -04:00
27 lines
499 B
Vue
27 lines
499 B
Vue
<template>
|
|
<Page>
|
|
<LinksNav />
|
|
|
|
<AcademicLinks />
|
|
|
|
<Separator icon="heart" />
|
|
<Support />
|
|
<section>
|
|
<Share :title="$t('links.academic.header')" />
|
|
</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.academic.header'),
|
|
}, this.$translator);
|
|
},
|
|
});
|
|
</script>
|