JSFiddle - React, Tailwind, and code Playground

by Md. Atiquzzaman Soikat

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  {{message}}
</div>

JavaScript

new Vue({
	el: "#app",
  data:{
  	message: 'hello world'
  }
})