2023-10-10 22:15:50 -04:00
|
|
|
<script setup lang="ts">
|
|
|
|
import storyForm from "~/components/story/create/storyform.vue";
|
2023-12-20 17:23:31 -05:00
|
|
|
import { defaultStory } from "@client/types/form/story";
|
2023-10-10 22:15:50 -04:00
|
|
|
definePageMeta({
|
|
|
|
middleware: ["auth"],
|
|
|
|
});
|
2023-12-09 17:22:08 -05:00
|
|
|
useHead({
|
|
|
|
title: "Post a new Story",
|
|
|
|
});
|
2023-10-10 22:15:50 -04:00
|
|
|
</script>
|
|
|
|
<template>
|
|
|
|
<a-typography-title> Post a new Story </a-typography-title>
|
2023-10-11 16:42:22 -04:00
|
|
|
<story-form
|
|
|
|
endpoint-method="post"
|
|
|
|
:can-draft="true"
|
|
|
|
:data="defaultStory"
|
|
|
|
endpoint="/story/new"
|
|
|
|
/>
|
2023-10-10 22:15:50 -04:00
|
|
|
</template>
|