1
0
Fork 0
mirror of https://github.com/elk-zone/elk.git synced 2025-03-20 23:22:00 +03:00
elk/pages/compose.vue

16 lines
205 B
Vue
Raw Normal View History

<script setup lang="ts">
definePageMeta({
middleware: 'auth',
})
const { t } = useI18n()
useHydratedHead({
title: () => t('nav.compose'),
})
</script>
2023-01-05 16:42:36 +01:00
<template>
<PublishWidgetFull />
</template>