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-05-13 04:54:13 -07:00
|
|
|
<div>
|
|
|
|
<LinksNav/>
|
2021-05-03 07:15:48 -07:00
|
|
|
|
2021-05-13 04:54:13 -07:00
|
|
|
<Links/>
|
|
|
|
<Recommended/>
|
|
|
|
<Socials/>
|
|
|
|
<LanguageVersions/>
|
2021-04-04 13:45:42 -07:00
|
|
|
<Support/>
|
2020-10-11 07:27:21 -07:00
|
|
|
<section>
|
|
|
|
<Share :title="$t('links.headerLong')"/>
|
|
|
|
</section>
|
2020-09-24 12:38:15 -07:00
|
|
|
</div>
|
|
|
|
</template>
|
2020-10-10 10:28:01 -07:00
|
|
|
|
|
|
|
<script>
|
|
|
|
import { head } from "../src/helpers";
|
|
|
|
|
|
|
|
export default {
|
|
|
|
head() {
|
|
|
|
return head({
|
|
|
|
title: this.$t('links.headerLong'),
|
|
|
|
});
|
|
|
|
},
|
|
|
|
};
|
|
|
|
</script>
|