docs: update quickstart (#10009)

* docs: update quickstart

* docs: update
This commit is contained in:
neverland 2021-12-07 17:04:56 +08:00 committed by GitHub
parent b0a036e5cf
commit 5f8fb05b7f
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
5 changed files with 193 additions and 167 deletions

View File

@ -92,55 +92,21 @@ In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to
## Usage
### 1. Import on demand
### Import on demand in vite projects (recommended)
Use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) to import components on demand.
If you are using vite, please use [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import).
```bash
# Install plugin
npm i babel-plugin-import -D
```
Set babel config in .babelrc or babel.config.js:
```json
{
"plugins": [
[
"import",
{
"libraryName": "vant",
"libraryDirectory": "es",
"style": true
}
]
]
}
```
Then you can import components from vant:
```js
// Input
import { Button } from 'vant';
// Output
import Button from 'vant/es/button';
import 'vant/es/button/style';
```
> If you are using TypeScriptplease use [ts-import-plugin](https://github.com/Brooooooklyn/ts-import-plugin) instead.
### 2. Vite Plugin
If you are using Vite, please use [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import).
#### 1. Install Plugin
```bash
npm i vite-plugin-style-import -D
```
#### 2. Configure Plugin
Configure the plugin in the `vite.config.js` file:
```js
// vite.config.js
import vue from '@vitejs/plugin-vue';
import styleImport from 'vite-plugin-style-import';
@ -160,14 +126,67 @@ export default {
};
```
### 3. Manually import
#### 3. Import Components
Then you can import components from Vant:
```js
import Button from 'vant/es/button/index';
import 'vant/es/button/style/index';
import { createApp } from 'vue';
import { Button } from 'vant';
const app = createApp();
app.use(Button);
```
### 4. Import all components
> Vant supports Tree Shaking by default.
### Import on demand in non-vite projects (recommended)
In non-vite projects, use [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) to import components on demand.
#### 1. Install Plugin
```bash
npm i babel-plugin-import -D
```
#### 2. Configure Plugin
Set babel config in `.babelrc` or `babel.config.js`:
```json
{
"plugins": [
[
"import",
{
"libraryName": "vant",
"libraryDirectory": "es",
"style": true
}
]
]
}
```
#### 3. Import Components
Then you can import components from Vant:
```js
// Input
import { Button } from 'vant';
// Output
import Button from 'vant/es/button';
import 'vant/es/button/style';
```
> If you are using TypeScriptplease use [ts-import-plugin](https://github.com/Brooooooklyn/ts-import-plugin) instead.
### Import all components (not recommended)
Import all components will **increase the bundle size**, so this is not recommended.
```js
import { createApp } from 'vue';
@ -179,3 +198,13 @@ app.use(Vant);
```
> If you configured babel-plugin-import, you won't be allowed to import all components.
### Manually import (not recommended)
```js
// import script
import Button from 'vant/es/button/index';
// import style
// if the component does not have a style file, there is no need to import
import 'vant/es/button/style/index';
```

View File

@ -76,25 +76,6 @@ pnpm add vant@3
- 通过 npm 引入,并通过构建工具进行打包
- 下载对应文件,并托管在你自己的服务器或 CDN 上
### 通过脚手架安装
在新项目中使用 Vant 时,可以使用 Vue 官方提供的脚手架 [Vue Cli](https://cli.vuejs.org/zh/) 创建项目并安装 Vant。
```bash
# 安装 Vue Cli
npm install -g @vue/cli
# 创建一个项目
vue create hello-world
# 创建完成后,可以通过命令打开图形化界面,如下图所示
vue ui
```
![](https://img.yzcdn.cn/vant/vue-cli-demo-201809032000.png)
在图形化界面中,点击 `依赖` -> `安装依赖`,然后将 `vant` 添加到依赖中即可。
## 示例
### 示例工程
@ -112,56 +93,21 @@ vue ui
## 引入组件
### 方式一. 通过 babel 插件按需引入组件
### 在 vite 项目中按需引入组件(推荐)
[babel-plugin-import](https://github.com/ant-design/babel-plugin-import) 是一款 babel 插件,它会在编译过程中将 import 语句自动转换为按需引入的方式。
在 vite 项目中使用 Vant 时,推荐安装 [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) 插件,它可以自动按需引入组件的样式。
#### 1. 安装插件
```bash
# 安装插件
npm i babel-plugin-import -D
```
在.babelrc 或 babel.config.js 中添加配置:
```json
{
"plugins": [
[
"import",
{
"libraryName": "vant",
"libraryDirectory": "es",
"style": true
}
]
]
}
```
接着你可以在代码中直接引入 Vant 组件,插件会自动将代码转化为按需引入的形式。
```js
// 原始代码
import { Button } from 'vant';
// 编译后代码
import Button from 'vant/es/button';
import 'vant/es/button/style';
```
> 如果你在使用 TypeScript可以使用 [ts-import-plugin](https://github.com/Brooooooklyn/ts-import-plugin) 实现按需引入。
### 方式二. 在 Vite 项目中按需引入组件
对于 vite 项目,可以使用 [vite-plugin-style-import](https://github.com/anncwb/vite-plugin-style-import) 实现按需引入, 原理和 `babel-plugin-import` 类似。
```bash
# 安装插件
npm i vite-plugin-style-import -D
```
#### 2. 配置插件
安装完成后,在 `vite.config.js` 文件中配置插件:
```js
// vite.config.js
import vue from '@vitejs/plugin-vue';
import styleImport from 'vite-plugin-style-import';
@ -181,20 +127,67 @@ export default {
};
```
### 方式三. 手动按需引入组件
#### 3. 引入组件
在不使用插件的情况下,可以手动引入需要使用的组件和样式。
完成以上两步,就可以直接使用 Vant 组件了:
```js
// 引入组件
import Button from 'vant/es/button/index';
// 引入组件对应的样式,若组件没有样式文件,则无须引入
import 'vant/es/button/style/index';
import { createApp } from 'vue';
import { Button } from 'vant';
const app = createApp();
app.use(Button);
```
### 方式四. 导入所有组件
> Vant 默认支持通过 Tree Shaking 实现 script 的按需引入。
Vant 支持一次性导入所有组件,引入所有组件会增加代码包体积,因此不推荐这种做法。
### 在非 vite 项目中按需引入组件(推荐)
在非 vite 的项目中,可以通过 babel 插件来实现按需引入组件。我们需要安装 [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) 插件,它会在编译过程中将 import 语句自动转换为按需引入的方式。
#### 1. 安装插件
```bash
npm i babel-plugin-import -D
```
#### 2. 配置插件
在.babelrc 或 babel.config.js 中添加配置:
```json
{
"plugins": [
[
"import",
{
"libraryName": "vant",
"libraryDirectory": "es",
"style": true
}
]
]
}
```
#### 3. 引入组件
接着你可以在代码中直接引入 Vant 组件,插件会自动将代码转化为按需引入的形式。
```js
// 原始代码
import { Button } from 'vant';
// 编译后代码
import Button from 'vant/es/button';
import 'vant/es/button/style';
```
> 如果你在使用 TypeScript可以使用 [ts-import-plugin](https://github.com/Brooooooklyn/ts-import-plugin) 实现按需引入。
### 导入所有组件(不推荐)
Vant 支持一次性导入所有组件,引入所有组件会**增加代码包体积**,因此不推荐这种做法。
```js
import { createApp } from 'vue';
@ -205,4 +198,16 @@ const app = createApp();
app.use(Vant);
```
> Tips: 配置按需引入后,将不允许直接导入所有组件。
> Tips: 配置按需引入插件后,将不允许直接导入所有组件。
### 手动按需引入组件(不推荐)
在不使用任何构建插件的情况下,可以手动引入需要使用的组件和样式。
```js
// 引入组件脚本
import Button from 'vant/es/button/index';
// 引入组件样式
// 若组件没有样式文件,则无须引入
import 'vant/es/button/style/index';
```

View File

@ -51,23 +51,19 @@ const imageURL = 'https://img.yzcdn.cn/vant/ipad.jpeg';
:thumb="imageURL"
>
<template #tags>
<div>
<van-tag plain type="danger" style="margin-right: 5px">
{{ t('tag') }}
</van-tag>
<van-tag plain type="danger">{{ t('tag') }}</van-tag>
</div>
<van-tag plain type="danger" style="margin-right: 5px">
{{ t('tag') }}
</van-tag>
<van-tag plain type="danger">{{ t('tag') }}</van-tag>
</template>
<template #footer>
<div>
<van-button round size="mini">
{{ t('button') }}
</van-button>
<van-button round size="mini">
{{ t('button') }}
</van-button>
</div>
<van-button round size="mini">
{{ t('button') }}
</van-button>
<van-button round size="mini">
{{ t('button') }}
</van-button>
</template>
</van-card>
</demo-block>

View File

@ -134,18 +134,16 @@ exports[`should render demo and match snapshot 1`] = `
<div class="van-card__desc van-ellipsis">
Description
</div>
<div>
<transition-stub style="margin-right: 5px;">
<span class="van-tag van-tag--plain van-tag--danger">
Tag
</span>
</transition-stub>
<transition-stub>
<span class="van-tag van-tag--plain van-tag--danger">
Tag
</span>
</transition-stub>
</div>
<transition-stub style="margin-right: 5px;">
<span class="van-tag van-tag--plain van-tag--danger">
Tag
</span>
</transition-stub>
<transition-stub>
<span class="van-tag van-tag--plain van-tag--danger">
Tag
</span>
</transition-stub>
</div>
<div class="van-card__bottom">
<div class="van-card__price">
@ -169,26 +167,24 @@ exports[`should render demo and match snapshot 1`] = `
</div>
</div>
<div class="van-card__footer">
<div>
<button type="button"
class="van-button van-button--default van-button--mini van-button--round"
>
<div class="van-button__content">
<span class="van-button__text">
Button
</span>
</div>
</button>
<button type="button"
class="van-button van-button--default van-button--mini van-button--round"
>
<div class="van-button__content">
<span class="van-button__text">
Button
</span>
</div>
</button>
</div>
<button type="button"
class="van-button van-button--default van-button--mini van-button--round"
>
<div class="van-button__content">
<span class="van-button__text">
Button
</span>
</div>
</button>
<button type="button"
class="van-button van-button--default van-button--mini van-button--round"
>
<div class="van-button__content">
<span class="van-button__text">
Button
</span>
</div>
</button>
</div>
</div>
</div>

View File

@ -55,7 +55,7 @@ const t = useTranslate({
type StateItem = {
show: boolean;
value: string | number | null;
value: string | number | undefined;
result: string;
options?: CascaderOption[];
tabIndex?: number;
@ -68,18 +68,18 @@ const baseState = reactive<StateItem>({
});
const customColorState = reactive<StateItem>({
show: false,
value: null,
value: undefined,
result: '',
});
const asyncState = reactive<StateItem>({
show: false,
value: null,
value: undefined,
result: '',
options: t('asyncOptions1'),
});
const customFieldState = reactive<StateItem>({
show: false,
value: null,
value: undefined,
result: '',
});
@ -91,7 +91,7 @@ const fieldNames = {
const customContentState = reactive<StateItem>({
show: false,
value: null,
value: undefined,
result: '',
});