next/pages/new-story.vue

12 lines
372 B
Vue
Raw Normal View History

<script setup lang="ts">
import storyForm from "~/components/story/create/storyform.vue";
import { defaultStory } from "~/lib/client/types/form/story";
definePageMeta({
middleware: ["auth"],
});
</script>
<template>
<a-typography-title> Post a new Story </a-typography-title>
<story-form :can-draft="true" :data="defaultStory" endpoint="/story/new" />
</template>