JSFiddle - React, Tailwind, and code Playground

HTML

<!DOCTYPE html>
<html>
<head>
    <meta charset="utf-8">
    <title>vue example</title>
    <script src="https://cdn.jsdelivr.net/npm/vue"></script>
</head>
<body>
<div id="app">
    <input v-model="message">
    {{ message }}
</div>
<script>
    new Vue({
        el: '#app',
        data: {
            message: ''
        }
    })
  </script>
</body>
</html>