Babel Plugin JSX for Vue 3.0
To add Vue JSX support.
Installation
Install the plugin with:
Then add the plugin to .babelrc:
Usage
options
transformOn
Type: boolean
Default: false
transform on: { click: xx }
to onClick: xxx
optimize
Type: boolean
Default: false
enable optimization or not. It's not recommended to enable it If you are not familiar with Vue 3.
isCustomElement
Type: (tag: string) => boolean
Default: undefined
configuring custom elements
mergeProps
Type: boolean
Default: true
merge static and dynamic class / style attributes / onXXX handlers
enableObjectSlots
Type: boolean
Default: true
Whether to enable object slots
(mentioned below the document) syntax". It might be useful in JSX, but it will add a lot of _isSlot
condition expressions which increase your bundle size. And v-slots
is still available even if enableObjectSlots
is turned off.
pragma
Type: string
Default: createVNode
Replace the function used when compiling JSX expressions.
Syntax
Content
functional component
with render
Fragment
Attributes / Props
with a dynamic binding:
Directives
v-show
v-model
Note: You should pass the second param as string for using
arg
.
Will compile to:
v-models
Note: You should pass a Two-dimensional Arrays to v-models.
Will compile to:
custom directive
Slot
Note: In
jsx
,v-slot
should be replace withv-slots
In TypeScript
tsconfig.json
:
Who is using
![]() Ant Design Vue |
![]() Vant |
![]() Element Plus |
Vue Json Pretty |
Compatibility
This repo is only compatible with:
- Babel 7+
- Vue 3+