jointrashposs/pages/share.vue
2023-12-20 19:39:08 +09:00

25 lines
438 B
Vue

<template>
<GMisskeyGateway
:path="`/share?${stringifyQuery(query)}`"
></GMisskeyGateway>
</template>
<script setup lang="ts">
import { stringifyQuery } from 'ufo';
definePageMeta({
layout: 'blank',
});
useHead({
meta: [
{ name: 'robots', content: 'noindex' },
],
});
const { meta, query } = useRoute();
const { t } = useI18n();
meta.title = t('_share.title');
meta.scrollButton = false;
</script>