babel-plugin-jsx-vue-functional
babel-plugin-jsx-vue-functional copied to clipboard
Should convert to component only if returning JSX directly
https://jsx.egoist.moe/gist/30abaf436a4b819500f91fd4c2a80d70
Or if there's a render method in top-level object:
// This will be convertd
const Foo = () => wrap({
render() {
return <div></div>
}
})