JSFiddle - React, Tailwind, and code Playground
HTML
<div id="vue">
{{random()}}<br>
{{'Hello' | filter}}<br>
{{counter}}
<button @click="counter++">+</button>
</div>
JavaScript
new Vue({
el:'#vue',
data:{
counter:0
},
methods:{
random:Math.random
},
filters:{
filter:Math.random
}
})