To add Vue JSX support.
Install the plugin with:
npm install @ant-design-vue/babel-plugin-jsx -D
npm install @ant-design-vue/babel-helper-vue-transform-on
Then add the plugin to .babelrc:
{
"plugins": ["@ant-design-vue/babel-plugin-jsx", { "transformOn": true, "compatibleProps": true }]
}
- transformOn
transform on: { click: xx }
to onClick: xxx
- compatibleProps
compatible with Vue 2.x
This repo is only compatible with:
- Babel 7+
- Vue 3+