feat(pages): create default new story page

This commit is contained in:
☙◦ The Tablet ❀ GamerGirlandCo ◦❧ 2023-10-10 22:15:50 -04:00
parent dbc5cab712
commit 8bda275244
Signed by: tablet
GPG Key ID: 924A5F6AF051E87C

11
pages/new-story.vue Normal file
View File

@ -0,0 +1,11 @@
<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>