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.
Zaimki/routes/links.vue

27 lines
475 B
Vue
Raw Normal View History

<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>
</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>