JSFiddle - React, Tailwind, and code Playground
HTML
<div id="base">
<h1>
Hallo Welt!
</h1>
<p>
{{test}}
</p>
<input v-model="test">
</div>
CSS
h1 {
color: red;
}
JavaScript
new Vue({
el: '#base',
data: {
test: "Hallo Welt!!"
}
});