JSFiddle - React, Tailwind, and code Playground
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:`<ul><li v-for="n in 10">{{n}}</li></ul>`
}
})