JSFiddle - React, Tailwind, and code Playground

by leopoldthecuber

HTML

<script src="//unpkg.com/vue/dist/vue.js"></script>

<div id="app">
  <div>
    <p>{{typeof value}}</p>
    <input v-model.number="value">
  </div>
</div>

JavaScript

var Main = {
    data() {
      return {
        value: ''
      };
    }
  }
var Ctor = Vue.extend(Main)
new Ctor().$mount('#app')