2021-04-22 15:29:33 +02:00
|
|
|
<template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkStickyContainer>
|
2023-04-05 07:49:17 +02:00
|
|
|
<template #header><MkPageHeader :actions="headerActions" :tabs="headerTabs" :show-back-button="true"/></template>
|
2022-06-20 10:38:49 +02:00
|
|
|
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
|
|
|
|
<FormSuspense :p="init">
|
|
|
|
none
|
|
|
|
</FormSuspense>
|
|
|
|
</MkSpacer>
|
|
|
|
</MkStickyContainer>
|
2021-04-22 15:29:33 +02:00
|
|
|
</template>
|
|
|
|
|
2022-05-25 09:38:18 +02:00
|
|
|
<script lang="ts" setup>
|
|
|
|
import { } from 'vue';
|
2022-01-04 13:16:41 +01:00
|
|
|
import FormSuspense from '@/components/form/suspense.vue';
|
2021-11-11 18:02:25 +01:00
|
|
|
import * as os from '@/os';
|
2022-02-28 19:51:31 +01:00
|
|
|
import { fetchInstance } from '@/instance';
|
2022-05-25 09:38:18 +02:00
|
|
|
import { i18n } from '@/i18n';
|
2022-06-20 10:38:49 +02:00
|
|
|
import { definePageMetadata } from '@/scripts/page-metadata';
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-25 09:38:18 +02:00
|
|
|
async function init() {
|
|
|
|
await os.api('admin/meta');
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-05-25 09:38:18 +02:00
|
|
|
function save() {
|
|
|
|
os.apiWithDialog('admin/update-meta').then(() => {
|
|
|
|
fetchInstance();
|
|
|
|
});
|
|
|
|
}
|
2021-04-22 15:29:33 +02:00
|
|
|
|
2022-06-20 10:38:49 +02:00
|
|
|
const headerActions = $computed(() => [{
|
|
|
|
asFullButton: true,
|
2023-03-11 22:01:04 +01:00
|
|
|
icon: 'ph-check ph-bold ph-lg',
|
2022-06-20 10:38:49 +02:00
|
|
|
text: i18n.ts.save,
|
|
|
|
handler: save,
|
|
|
|
}]);
|
|
|
|
|
|
|
|
const headerTabs = $computed(() => []);
|
|
|
|
|
|
|
|
definePageMetadata({
|
|
|
|
title: i18n.ts.other,
|
2023-03-11 22:01:04 +01:00
|
|
|
icon: 'ph-gear-six ph-bold ph-lg',
|
2021-04-22 15:29:33 +02:00
|
|
|
});
|
|
|
|
</script>
|