elk/pages/compose.vue
Joaquín Sánchez ab2881b9a2
refactor: remove useHeadFixed workaround (#1938)
Co-authored-by: Ayaka Rizumu <464388324@qq.com>
2023-04-01 04:14:12 -07:00

11 lines
153 B
Vue

<script setup lang="ts">
const { t } = useI18n()
useHead({
title: () => t('nav.compose'),
})
</script>
<template>
<PublishWidgetFull />
</template>