JSFiddle - React, Tailwind, and code Playground
HTML
<script src="//unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<template>
{{value}}
<input v-model.number="value">
</template>
</div>
Babel + JSX
var Main = {
data() {
return {
value: ''
}
}
}
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')