Skip to content

Instantly share code, notes, and snippets.

@pablohpsilva
Created April 4, 2017 03:00
Show Gist options
  • Save pablohpsilva/28bbda39dd2f0de21306e9c6e4cb5314 to your computer and use it in GitHub Desktop.
Save pablohpsilva/28bbda39dd2f0de21306e9c6e4cb5314 to your computer and use it in GitHub Desktop.
Comparing v-model with the combination of value and @input
<template>
<input v-model="someVariable" />
<!-- Is the same as: -->
<input :value="someVariable" @input="onInputUpdateSomeVariable" />
</template>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment