mirror of
https://iceshrimp.dev/Crimekillz/jointrashposs.git
synced 2024-11-22 08:53:49 +01:00
2a773efda0
fix #35
25 lines
438 B
Vue
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> |