Skip to content

Instantly share code, notes, and snippets.

@andreipfeiffer
Created February 2, 2017 09:24
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save andreipfeiffer/a288894371b5e6a3c860603550013615 to your computer and use it in GitHub Desktop.
Save andreipfeiffer/a288894371b5e6a3c860603550013615 to your computer and use it in GitHub Desktop.
<template>
<input :value="name" @change="update"/>
</template>
<script>
export default {
methods: {
update(event) {
this.name = event.target.value;
}
}
}
</script>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment