stryle3
#3 html print
by SUNG BIN CHO
HTML
<div id="app" v-html="htmlTexts[0]">
</div>
JavaScript
new Vue({
el: '#app',
data:{
htmlTexts:[
'Dear John, <br/> thank you for the <pre> Batman vs Superman<pre> DVD!',
'Dear John, <br/> thank you for <i> Ghostbusters 3</i>!',
'Dear John, <br/> thanks, <b> Gods of Egypt</b> is my new favourite!'
]
}
})