JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<hello-world></hello-world>
</div>
<script type="text/x-template" id="hello-world-template">
<div>Hello, {{ name }}!</div>
</script>
JavaScript
Vue.component('hello-world', {
template: '#hello-world-template',
data: function () {
return {
name: 'dblight'
}
}
})
new Vue({
el: '#app'
})