JSFiddle - React, Tailwind, and code Playground
HTML
<link rel="stylesheet" href="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.css">
<script src="http://cdn.leafletjs.com/leaflet-0.5.1/leaflet.js"></script>
<script src="http://include.jaydata.org/jaydata.min.js"></script>
<script src="https://dev-open.jaystack.net/a11d6738-0e23-4e04-957b-f14e149a9de8/1162e5ee-49ca-4afd-87be-4e17c491140b/socket.io/socket.io.js"></script>
<script src="https://unpkg.com/vue"></script>
<div id="app">
<h1>
{{ message }}
</h1>
<canvas id="map"></canvas>
<div id="map">
</div>
</div>
JavaScript
var app = new Vue({
el: '#app',
data: {
message: 'Hello Vue!'
}
})