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

@ -167,6 +167,7 @@
"blocked_users": "Blocked users",
"bookmarks": "Bookmarks",
"built_at": "Built {0}",
"compose": "Compose",
"conversations": "Conversations",
"explore": "Explore",
"favourites": "Favorites",

View file

@ -164,6 +164,7 @@
"blocked_users": "已拉黑的用户",
"bookmarks": "书签",
"built_at": "构建于 {0}",
"compose": "撰写",
"conversations": "私信",
"explore": "探索",
"favourites": "喜欢",

View file

@ -167,6 +167,7 @@
"blocked_users": "已黑名單的使用者",
"bookmarks": "書籤",
"built_at": "於 {0}更新",
"compose": "撰寫",
"conversations": "私訊",
"explore": "探索",
"favourites": "喜歡",

View file

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