Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 26, 2018 11:50
Show Gist options
  • Save lmiller1990/79c0c8628ceb804630429c0366be2ebd to your computer and use it in GitHub Desktop.
Save lmiller1990/79c0c8628ceb804630429c0366be2ebd to your computer and use it in GitHub Desktop.
<template>
<div>
<div class="title">Create Post</div>
<CreatePostContainer />
</div>
</template>
<script>
import CreatePostContainer from '@/components/posts/CreatePostContainer'
export default {
name: 'Create',
components: {
CreatePostContainer
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment