JSFiddle - React, Tailwind, and code Playground
by darkylmnx
HTML
<div id="app">
<h1>
{{ title }}
</h1>
</div>
Vue
const CompA = {
data() {
return {}
}
}
new Vue({
el: '#app',
data() {
return {
title: 'hello'
}
}
})