JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

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
  }
})