JSFiddle - React, Tailwind, and code Playground

HTML

<div id="app">
  
</div>

JavaScript

Vue.component('tag', {
	props: ['initVal'],
})

new Vue({
	el: '#app',
  template: `
  	<div>
    	<tag inline-template :initVal="1">
      	<h1>{{ initVal }}</h1>
      </tag>
    </div>
  `
})