JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
<h1 :style="'color:#f00'" ref="h">
Hello
</h1>
<pre>{{html}}</pre>
</div>
Vue
new Vue({
el:'#vue',
data(){
return {
html:''
}
},
updated(){
this.html = this.$refs.h.outerHTML
}
})