JSFiddle - React, Tailwind, and code Playground
by John Doe
HTML
<div id="example">
<my-component></my-component>
</div>
</div>
JavaScript
// define
var MyComponent = Vue.extend({
template: '<div>A custom component!</div>'
})
// register
Vue.component('my-component', MyComponent)
// create a root instance
new Vue({
el: '#example'
})