JSFiddle - React, Tailwind, and code Playground

HTML

<div id="app">
  <tag inline-template init-val="1">
      	<h1>{{ initVal }}</h1>
  </tag>
</div>

JavaScript

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

new Vue({
	el: '#app'
})