mirror of
https://github.com/vuejs/babel-plugin-jsx.git
synced 2024-11-10 09:39:14 +08:00
docs: update README
This commit is contained in:
parent
5e2eaa6ced
commit
082f537b89
@ -7,14 +7,16 @@ To add Vue JSX support.
|
||||
Install the plugin with:
|
||||
|
||||
```
|
||||
npm install @ant-design-vue/babel-plugin-jsx
|
||||
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"]
|
||||
"plugins": ["@ant-design-vue/babel-plugin-jsx", { "transformOn": true }]
|
||||
}
|
||||
```
|
||||
|
||||
|
@ -1,11 +1,5 @@
|
||||
# @ant-design-vue/babel-helper-vue-transform-on
|
||||
|
||||
A package used internally by vue jsx transformer to merge props spread. It is required to merge some prop trees like this:
|
||||
A package used internally by vue jsx transformer to transform events.
|
||||
|
||||
## Usage
|
||||
|
||||
```
|
||||
const babelHelperVueTransformOn = require('babel-helper-vue-transform-on');
|
||||
|
||||
// TODO: DEMONSTRATE API
|
||||
```
|
||||
on: { click: xx } --> onClick: xx
|
||||
|
@ -1,9 +1,8 @@
|
||||
{
|
||||
"name": "@ant-design-vue/babel-helper-vue-transform-on",
|
||||
"version": "1.0.0",
|
||||
"description": "> TODO: description",
|
||||
"version": "1.0.1",
|
||||
"description": "to help transform on",
|
||||
"author": "Amour1688 <lcz_1996@foxmail.com>",
|
||||
"license": "MIT",
|
||||
"main": "index.js",
|
||||
"private": true
|
||||
"main": "index.js"
|
||||
}
|
||||
|
@ -1,11 +1,19 @@
|
||||
# `babel-plugin-jsx`
|
||||
# @ant-design-vue/babel-plugin-jsx
|
||||
|
||||
> TODO: description
|
||||
To add Vue JSX support.
|
||||
|
||||
## Usage
|
||||
## Installation
|
||||
|
||||
Install the plugin with:
|
||||
|
||||
```
|
||||
const babelPluginJsx = require('babel-plugin-jsx');
|
||||
|
||||
// TODO: DEMONSTRATE API
|
||||
npm install @ant-design-vue/babel-plugin-jsx
|
||||
```
|
||||
|
||||
Then add the plugin to .babelrc:
|
||||
|
||||
```
|
||||
{
|
||||
"plugins": ["@ant-design-vue/babel-plugin-jsx"]
|
||||
}
|
||||
```
|
||||
|
Loading…
Reference in New Issue
Block a user