JSFiddle - React, Tailwind, and code Playground
by ktsn
HTML
<script src="https://unpkg.com/vue"></script>
<div id="app">
<func-comp name="name value" />
</div>
JavaScript
const FuncComp = {
functional: true,
props: {
name: String
},
render (h, { props }) {
return h('p', {}, [props.name])
}
}
new Vue({
el: '#app',
components: {
FuncComp
}
})