JSFiddle - React, Tailwind, and code Playground

by skirtle

HTML

<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<hello-component></hello-component>
<hello-component hello></hello-component>
<hello-component hello="hello"></hello-component>

JavaScript

const { defineCustomElement, h } = Vue
  
customElements.define('hello-component', defineCustomElement({
  props: {
    hello: Boolean
  },
  
  render() {
    return h('div', `${typeof this.hello} ${this.hello}`)
  }
}))