Created
January 26, 2018 12:40
-
-
Save lmiller1990/0ffd1b4ad7eb7ec64e71cf1e469bdd38 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<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