Sharkey/packages/client/src/pages/admin/other-settings.vue

41 lines
784 B
Vue
Raw Normal View History

<template>
2022-01-04 14:16:41 +02:00
<MkSpacer :content-max="700" :margin-min="16" :margin-max="32">
<FormSuspense :p="init">
2022-01-04 20:09:20 +02:00
none
</FormSuspense>
2022-01-04 14:16:41 +02:00
</MkSpacer>
</template>
<script lang="ts" setup>
import { } from 'vue';
2022-01-04 14:16:41 +02:00
import FormSuspense from '@/components/form/suspense.vue';
2021-11-11 19:02:25 +02:00
import * as os from '@/os';
import * as symbols from '@/symbols';
import { fetchInstance } from '@/instance';
import { i18n } from '@/i18n';
async function init() {
await os.api('admin/meta');
}
function save() {
os.apiWithDialog('admin/update-meta').then(() => {
fetchInstance();
});
}
defineExpose({
[symbols.PAGE_INFO]: {
title: i18n.ts.other,
icon: 'fas fa-cogs',
bg: 'var(--bg)',
actions: [{
asFullButton: true,
icon: 'fas fa-check',
text: i18n.ts.save,
handler: save,
}],
}
});
</script>