Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 10, 2020 14:51
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 PKTseng/ca7eac13e44e2a3d0262f0b4c81f28a2 to your computer and use it in GitHub Desktop.
Save PKTseng/ca7eac13e44e2a3d0262f0b4c81f28a2 to your computer and use it in GitHub Desktop.
textarea-pre+setMessage
<div id="app">
<textarea @input="setMessage">{{message}}</textarea>
<pre>{{message}}</pre>
</div>
new Vue({
el:'#app',
data:{
message: '',
},
methods:{
setMessage(e){
this.message = e.target.value;
}
}
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment