Skip to content

Instantly share code, notes, and snippets.

@PKTseng
Created August 10, 2020 14:38
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/9ae0216303667b92b40547d1875555c3 to your computer and use it in GitHub Desktop.
Save PKTseng/9ae0216303667b92b40547d1875555c3 to your computer and use it in GitHub Desktop.
textarea-pre
<div id="app">
<textarea v-model="message"></textarea>
<!-- <h1>{{message}}</h1> -->
<pre>{{message}}</pre>
</div>
new Vue({
el:'#app',
data:{
message: '',
},
})
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment