JSFiddle - React, Tailwind, and code Playground
by hunterliu
HTML
<div id="app">
<span>Multiline message is:</span>
<p style="white-space: pre-line;">{{ msg }}</p>
<br>
<textarea v-model="msg" placeholder="add multiple lines"></textarea>
</div>
JavaScript
var vm = new Vue({
el: '#app',
data: {
msg: 'Hello Vue.js'
}
})
// vm.$data.msg = 'change msg'