JSFiddle - React, Tailwind, and code Playground
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<app></app>
JavaScript
Vue.component('app', {
functional: true,
props: ['super-prop'],
render: function (createElement, context) {
// You have access to context.props.superProp here
return { dog: "Bark" }
}
})
new Vue({
el: '#app'
})