JSFiddle - React, Tailwind, and code Playground
HTML
<div id="update-email">
<input type="text" name="email" value="[email protected]" v-model="email" @keydown.enter="email">
{{ email }}
</div>
JavaScript
new Vue({
el: '#update-email',
data() {
return {
email: '',
};
}
});