JSFiddle - React, Tailwind, and code Playground
HTML
<script src='https://unpkg.com/[email protected]/dist/vue.js'></script>
<div id='app'>
<my-component></my-component>
</div>
JavaScript
Vue.component('my-component', {
template: '<h2>{{greatings}}</h2>',
data: function () {
return {
greatings: 'Hello from component'
};
}
});
new Vue({
el: '#app'
});