JSFiddle - React, Tailwind, and code Playground
by mgoetzke
HTML
<script src="https://unpkg.com/vue/dist/vue.js"></script>
<div id="app">
<p>{{ message }}</p>
<wrapper with="props">
<p>{{props.test}}</p>
</wrapper>
</div>
JavaScript
Vue.component('wrapper', {
render(h) {
return h('div', [
this.$scopedSlots.default({
test: 'works!'
})
])
}
})
new Vue({
el: '#app',
data: {
message: 'Hello Vue.js!'
}
})