2022-11-09 21:18:36 +01:00
|
|
|
<template>
|
2023-04-08 02:01:42 +02:00
|
|
|
<div>
|
|
|
|
<MkStickyContainer>
|
|
|
|
<template #header
|
|
|
|
><MkPageHeader
|
|
|
|
:actions="headerActions"
|
|
|
|
:tabs="headerTabs"
|
|
|
|
:display-back-button="true"
|
|
|
|
/></template>
|
|
|
|
<MkSpacer :content-max="900">
|
|
|
|
<XFederation />
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
|
|
|
</div>
|
2022-11-09 21:18:36 +01:00
|
|
|
</template>
|
|
|
|
|
|
|
|
<script lang="ts" setup>
|
2023-04-08 02:01:42 +02:00
|
|
|
import { computed } from "vue";
|
|
|
|
import { definePageMetadata } from "@/scripts/page-metadata";
|
|
|
|
import { i18n } from "@/i18n";
|
|
|
|
import XFederation from "@/pages/about.federation.vue";
|
2023-10-17 03:57:20 +02:00
|
|
|
import icon from "@/scripts/icon";
|
2022-11-09 21:18:36 +01:00
|
|
|
|
2023-08-12 02:44:46 +02:00
|
|
|
const headerActions = computed(() => []);
|
2022-11-09 21:18:36 +01:00
|
|
|
|
2023-08-12 02:44:46 +02:00
|
|
|
const headerTabs = computed(() => []);
|
2022-11-09 21:18:36 +01:00
|
|
|
|
2023-04-08 02:01:42 +02:00
|
|
|
definePageMetadata(
|
|
|
|
computed(() => ({
|
|
|
|
title: i18n.ts.federation,
|
2023-10-17 03:57:20 +02:00
|
|
|
icon: `${icon("ph-planet")}`,
|
2023-07-06 03:28:27 +02:00
|
|
|
})),
|
2023-04-08 02:01:42 +02:00
|
|
|
);
|
2022-11-09 21:18:36 +01:00
|
|
|
</script>
|