JSFiddle - React, Tailwind, and code Playground
by skirtle
HTML
<script src="https://unpkg.com/[email protected]/dist/vue.global.js"></script>
<div id="app">
<my-child @camelCase="() => {}" />
</div>
JavaScript
Vue.createApp({
components: {
MyChild: {
// Adding a 'components' option here
// loses the component name in the
// warning message
components: {},
template: `<div>Child</div>`,
mounted() {
this.$emit('camelCase')
}
}
}
}).mount('#app')