JSFiddle - React, Tailwind, and code Playground

by Simon Herteby

HTML

<div id="vue">
  <textarea v-model="template"></textarea>
  <component :is="{template}"></component>
</div>

CSS

textarea{
  width:100%;
  height:100px;
}

JavaScript

new Vue({
	el:'#vue',
  data:{
  	template:`<div>
  <p v-for="n in 10">Hello Vue!</p>
</div>`
  }
})