mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
update README.md: add babel-plugin-import
This commit is contained in:
parent
05181edd52
commit
4e57dfa797
39
README.md
39
README.md
@ -18,11 +18,36 @@ npm i -S vant
|
|||||||
```
|
```
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
|
### Use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (Recommended)
|
||||||
|
|
||||||
|
```js
|
||||||
|
// .babelrc or babel-loader option
|
||||||
|
{
|
||||||
|
"plugins": [
|
||||||
|
["import", { "libraryName": "vant", "style": true }]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
Then you can import components from vant, equivalent to import manually below.
|
||||||
|
|
||||||
|
```js
|
||||||
|
// import js and css modularly, parsed by babel-plugin-import
|
||||||
|
import { Button } from 'vant';
|
||||||
|
```
|
||||||
|
|
||||||
|
### Manually import
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import { Button } from 'vant';
|
||||||
|
import 'vant/lib/vant-css/button.css';
|
||||||
|
```
|
||||||
|
|
||||||
|
|
||||||
### Import all components
|
### Import all components
|
||||||
|
|
||||||
```javascript
|
```javascrip
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import vant from 'vant';
|
import vant from 'vant';
|
||||||
import 'vant/lib/vant-css/index.css';
|
import 'vant/lib/vant-css/index.css';
|
||||||
@ -30,18 +55,6 @@ import 'vant/lib/vant-css/index.css';
|
|||||||
Vue.use(vant);
|
Vue.use(vant);
|
||||||
```
|
```
|
||||||
|
|
||||||
### On demand
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
import Vue from 'vue';
|
|
||||||
import { Button, Cell } from 'vant';
|
|
||||||
import 'vant/lib/vant-css/button.css';
|
|
||||||
import 'vant/lib/vant-css/cell.css';
|
|
||||||
|
|
||||||
Vue.component(Button.name, Button);
|
|
||||||
Vue.component(Cell.name, Cell);
|
|
||||||
```
|
|
||||||
|
|
||||||
## Development
|
## Development
|
||||||
|
|
||||||
### Add a new component
|
### Add a new component
|
||||||
|
@ -18,28 +18,40 @@ npm i -S vant
|
|||||||
## 二、使用
|
## 二、使用
|
||||||
|
|
||||||
|
|
||||||
### 1. 导入所有组件
|
### 使用 [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) (推荐)
|
||||||
|
|
||||||
|
```js
|
||||||
|
// .babelrc or babel-loader option
|
||||||
|
{
|
||||||
|
"plugins": [
|
||||||
|
["import", { "libraryName": "vant", "style": true }]
|
||||||
|
]
|
||||||
|
}
|
||||||
|
```
|
||||||
|
|
||||||
|
接着你可以直接引入 vant 组件,等价于下方的按需引入组件
|
||||||
|
|
||||||
|
```js
|
||||||
|
// 模块化地引入 js 和 css, 通过 babel-plugin-import 插件解析
|
||||||
|
import { Button } from 'vant';
|
||||||
|
```
|
||||||
|
|
||||||
|
### 按需引入组件
|
||||||
|
|
||||||
|
```jsx
|
||||||
|
import { Button } from 'vant/lib/button';
|
||||||
|
import 'vant/lib/vant-css/button.css';
|
||||||
|
```
|
||||||
|
|
||||||
```javascript
|
### 导入所有组件
|
||||||
|
|
||||||
|
```javascrip
|
||||||
import Vue from 'vue';
|
import Vue from 'vue';
|
||||||
import vant from 'vant';
|
import vant from 'vant';
|
||||||
// 你也可以使用自己的主题
|
|
||||||
import 'vant/lib/vant-css/index.css';
|
import 'vant/lib/vant-css/index.css';
|
||||||
|
|
||||||
Vue.use(vant);
|
Vue.use(vant);
|
||||||
```
|
```
|
||||||
|
|
||||||
### 2. 按需导入组件
|
|
||||||
|
|
||||||
```javascript
|
|
||||||
import Vue from 'vue';
|
|
||||||
import { Button, Cell } from 'vant';
|
|
||||||
import 'vant/lib/vant-css/button.css';
|
|
||||||
import 'vant/lib/vant-css/cell.css';
|
|
||||||
|
|
||||||
Vue.component(Button.name, Button);
|
|
||||||
Vue.component(Cell.name, Cell);
|
|
||||||
```
|
|
||||||
|
|
||||||
## 三、开发
|
## 三、开发
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user