mirror of
https://github.com/elk-zone/elk.git
synced 2024-11-04 16:09:59 +00:00
feat: add page title for compose page (#1157)
This commit is contained in:
parent
e9479da2a2
commit
bfcdd02a0a
4 changed files with 10 additions and 0 deletions
|
@ -167,6 +167,7 @@
|
|||
"blocked_users": "Blocked users",
|
||||
"bookmarks": "Bookmarks",
|
||||
"built_at": "Built {0}",
|
||||
"compose": "Compose",
|
||||
"conversations": "Conversations",
|
||||
"explore": "Explore",
|
||||
"favourites": "Favorites",
|
||||
|
|
|
@ -164,6 +164,7 @@
|
|||
"blocked_users": "已拉黑的用户",
|
||||
"bookmarks": "书签",
|
||||
"built_at": "构建于 {0}",
|
||||
"compose": "撰写",
|
||||
"conversations": "私信",
|
||||
"explore": "探索",
|
||||
"favourites": "喜欢",
|
||||
|
|
|
@ -167,6 +167,7 @@
|
|||
"blocked_users": "已黑名單的使用者",
|
||||
"bookmarks": "書籤",
|
||||
"built_at": "於 {0}更新",
|
||||
"compose": "撰寫",
|
||||
"conversations": "私訊",
|
||||
"explore": "探索",
|
||||
"favourites": "喜歡",
|
||||
|
|
|
@ -1,3 +1,10 @@
|
|||
<script setup lang="ts">
|
||||
const { t } = useI18n()
|
||||
useHeadFixed({
|
||||
title: () => t('nav.compose'),
|
||||
})
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<PublishWidgetFull />
|
||||
</template>
|
||||
|
|
Loading…
Reference in a new issue