feat: add page title for compose page (#1157)

This commit is contained in:
webfansplz 2023-01-15 15:54:54 +08:00 committed by GitHub
parent e9479da2a2
commit bfcdd02a0a
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
4 changed files with 10 additions and 0 deletions

View file

@ -1,3 +1,10 @@
<script setup lang="ts">
const { t } = useI18n()
useHeadFixed({
title: () => t('nav.compose'),
})
</script>
<template>
<PublishWidgetFull />
</template>