Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 26, 2018 12:40
Show Gist options
  • Save lmiller1990/0ffd1b4ad7eb7ec64e71cf1e469bdd38 to your computer and use it in GitHub Desktop.
Save lmiller1990/0ffd1b4ad7eb7ec64e71cf1e469bdd38 to your computer and use it in GitHub Desktop.
<template>
<div>
Create Post Component
<form @submit.prevent="$emit('submit')">
<slot name="description" />
<slot name="submit" />
</form>
</div>
</template>
<script>
export default {
name: 'CreatePost'
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment