JSFiddle - React, Tailwind, and code Playground

HTML

<div id="vue">
  <component :is="string && {template:string}"/>
</div>

JavaScript

new Vue({
	el:'#vue',
	data(){
  	return {
    	string:undefined
    }
  },
  created(){
  	//setTimeout to simulate ajax call
  	setTimeout(()=> this.string = '<div><h1 v-for="n in 3">Hello!</h1></div>', 1000)
  }
})