JSFiddle - React, Tailwind, and code Playground

by flourscent

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js">
</script>

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

JavaScript

new Vue({
	template: '<p> {{ msg }} </p>',
  data: { msg: 'hello world!' }
}).$mount('#app')