JSFiddle - React, Tailwind, and code Playground

by woaisluosj

HTML

<div id="app">
  {{ msg }}
</div>

JavaScript

new Vue({
el: '#app',
data: {
msg : 'hello vuejs'
}
})