Skip to content

Instantly share code, notes, and snippets.

@lmiller1990
Created January 26, 2018 11:09
Show Gist options
  • Save lmiller1990/64a522e22534860031970058dfeabfd5 to your computer and use it in GitHub Desktop.
Save lmiller1990/64a522e22534860031970058dfeabfd5 to your computer and use it in GitHub Desktop.
<template>
<div>
<textarea
:value="value"
@input="handleInput"
/>
</div>
</template>
<script>
export default {
name: 'CreateDescription',
props: {
value: {
type: String
}
},
methods: {
handleInput (e) {
this.$emit('input', e.target.value)
}
}
}
</script>
<style scoped>
</style>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment