jointrashposs/pages/share.vue

25 lines
438 B
Vue
Raw Normal View History

<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');
2023-12-20 11:39:08 +01:00
meta.scrollButton = false;
</script>