docs: update install guide

This commit is contained in:
chenjiahan 2020-08-21 11:42:40 +08:00
parent 17379286c8
commit 435c6ee794
4 changed files with 10 additions and 6 deletions

View File

@ -54,10 +54,11 @@ yarn add vant
## Quickstart
```js
import Vue from 'vue';
import { createApp } from 'vue';
import { Button } from 'vant';
import 'vant/lib/index.css';
const app = createApp();
Vue.use(Button);
```

View File

@ -51,10 +51,11 @@ yarn add vant
## 快速上手
```js
import Vue from 'vue';
import { createApp } from 'vue';
import { Button } from 'vant';
import 'vant/lib/index.css';
const app = createApp();
Vue.use(Button);
```

View File

@ -82,11 +82,12 @@ import 'vant/lib/button/style';
### 3. Import all components
```js
import Vue from 'vue';
import { createApp } from 'vue';
import Vant from 'vant';
import 'vant/lib/index.css';
Vue.use(Vant);
const app = createApp();
app.use(Vant);
```
> If you configured babel-plugin-import, you won't be allowed to import all components.

View File

@ -99,11 +99,12 @@ import 'vant/lib/button/style';
Vant 支持一次性导入所有组件,引入所有组件会增加代码包体积,因此不推荐这种做法
```js
import Vue from 'vue';
import { createApp } from 'vue';
import Vant from 'vant';
import 'vant/lib/index.css';
Vue.use(Vant);
const app = createApp();
app.use(Vant);
```
> 配置按需引入后,将不允许直接导入所有组件