docs: update README

This commit is contained in:
Amour1688 2020-05-27 00:12:34 +08:00
parent 5e2eaa6ced
commit 082f537b89
4 changed files with 23 additions and 20 deletions

View File

@ -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 }]
}
```

View File

@ -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

View File

@ -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"
}

View File

@ -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"]
}
```