Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 26, 2018 11:41
Show Gist options
  • Save lmiller1990/e8e244788dd4e86eacff0a03adc14b7c to your computer and use it in GitHub Desktop.
Save lmiller1990/e8e244788dd4e86eacff0a03adc14b7c to your computer and use it in GitHub Desktop.
<template>
<div>
{{ content }}
<CreatePost>
<CreateDescription
slot="description"
v-model="content"
/>
</CreatePost>
</div>
</template>
<script>
import CreatePost from './CreatePost'
import CreateDescription from './CreateDescription'
export default {
name: 'CreateContainer',
components: {
CreatePost,
CreateDescription
},
data () {
return {
content: ''
}
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment