JSFiddle - React, Tailwind, and code Playground

by ktsn

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.js"></script>
<div id="app">
  <test from-mixin="test"></test>
</div>

JavaScript

Vue.mixin({
 props: {
  fromMixin: String
 }
})

Vue.component('test', {
	functional: true,
	render: (h, { props }) => {
   return h('div', [props.fromMixin])
  }
})

new Vue({
    el: '#app',
})