mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
docs: update quickstart (#10009)
* docs: update quickstart * docs: update
This commit is contained in:
parent
b0a036e5cf
commit
5f8fb05b7f
@ -92,55 +92,21 @@ In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to
|
|||||||
|
|
||||||
## Usage
|
## 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
|
#### 1. Install Plugin
|
||||||
# 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 TypeScript,please 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).
|
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
npm i vite-plugin-style-import -D
|
npm i vite-plugin-style-import -D
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### 2. Configure Plugin
|
||||||
|
|
||||||
|
Configure the plugin in the `vite.config.js` file:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
// vite.config.js
|
|
||||||
import vue from '@vitejs/plugin-vue';
|
import vue from '@vitejs/plugin-vue';
|
||||||
import styleImport from 'vite-plugin-style-import';
|
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
|
```js
|
||||||
import Button from 'vant/es/button/index';
|
import { createApp } from 'vue';
|
||||||
import 'vant/es/button/style/index';
|
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 TypeScript,please 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
|
```js
|
||||||
import { createApp } from 'vue';
|
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.
|
> 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';
|
||||||
|
```
|
||||||
|
@ -76,25 +76,6 @@ pnpm add vant@3
|
|||||||
- 通过 npm 引入,并通过构建工具进行打包
|
- 通过 npm 引入,并通过构建工具进行打包
|
||||||
- 下载对应文件,并托管在你自己的服务器或 CDN 上
|
- 下载对应文件,并托管在你自己的服务器或 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
|
|
||||||
```
|
|
||||||
|
|
||||||

|
|
||||||
|
|
||||||
在图形化界面中,点击 `依赖` -> `安装依赖`,然后将 `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
|
```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
|
npm i vite-plugin-style-import -D
|
||||||
```
|
```
|
||||||
|
|
||||||
|
#### 2. 配置插件
|
||||||
|
|
||||||
|
安装完成后,在 `vite.config.js` 文件中配置插件:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
// vite.config.js
|
|
||||||
import vue from '@vitejs/plugin-vue';
|
import vue from '@vitejs/plugin-vue';
|
||||||
import styleImport from 'vite-plugin-style-import';
|
import styleImport from 'vite-plugin-style-import';
|
||||||
|
|
||||||
@ -181,20 +127,67 @@ export default {
|
|||||||
};
|
};
|
||||||
```
|
```
|
||||||
|
|
||||||
### 方式三. 手动按需引入组件
|
#### 3. 引入组件
|
||||||
|
|
||||||
在不使用插件的情况下,可以手动引入需要使用的组件和样式。
|
完成以上两步,就可以直接使用 Vant 组件了:
|
||||||
|
|
||||||
```js
|
```js
|
||||||
// 引入组件
|
import { createApp } from 'vue';
|
||||||
import Button from 'vant/es/button/index';
|
import { Button } from 'vant';
|
||||||
// 引入组件对应的样式,若组件没有样式文件,则无须引入
|
|
||||||
import 'vant/es/button/style/index';
|
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
|
```js
|
||||||
import { createApp } from 'vue';
|
import { createApp } from 'vue';
|
||||||
@ -205,4 +198,16 @@ const app = createApp();
|
|||||||
app.use(Vant);
|
app.use(Vant);
|
||||||
```
|
```
|
||||||
|
|
||||||
> Tips: 配置按需引入后,将不允许直接导入所有组件。
|
> Tips: 配置按需引入插件后,将不允许直接导入所有组件。
|
||||||
|
|
||||||
|
### 手动按需引入组件(不推荐)
|
||||||
|
|
||||||
|
在不使用任何构建插件的情况下,可以手动引入需要使用的组件和样式。
|
||||||
|
|
||||||
|
```js
|
||||||
|
// 引入组件脚本
|
||||||
|
import Button from 'vant/es/button/index';
|
||||||
|
// 引入组件样式
|
||||||
|
// 若组件没有样式文件,则无须引入
|
||||||
|
import 'vant/es/button/style/index';
|
||||||
|
```
|
||||||
|
@ -51,23 +51,19 @@ const imageURL = 'https://img.yzcdn.cn/vant/ipad.jpeg';
|
|||||||
:thumb="imageURL"
|
:thumb="imageURL"
|
||||||
>
|
>
|
||||||
<template #tags>
|
<template #tags>
|
||||||
<div>
|
|
||||||
<van-tag plain type="danger" style="margin-right: 5px">
|
<van-tag plain type="danger" style="margin-right: 5px">
|
||||||
{{ t('tag') }}
|
{{ t('tag') }}
|
||||||
</van-tag>
|
</van-tag>
|
||||||
<van-tag plain type="danger">{{ t('tag') }}</van-tag>
|
<van-tag plain type="danger">{{ t('tag') }}</van-tag>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
<template #footer>
|
<template #footer>
|
||||||
<div>
|
|
||||||
<van-button round size="mini">
|
<van-button round size="mini">
|
||||||
{{ t('button') }}
|
{{ t('button') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
<van-button round size="mini">
|
<van-button round size="mini">
|
||||||
{{ t('button') }}
|
{{ t('button') }}
|
||||||
</van-button>
|
</van-button>
|
||||||
</div>
|
|
||||||
</template>
|
</template>
|
||||||
</van-card>
|
</van-card>
|
||||||
</demo-block>
|
</demo-block>
|
||||||
|
@ -134,7 +134,6 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
<div class="van-card__desc van-ellipsis">
|
<div class="van-card__desc van-ellipsis">
|
||||||
Description
|
Description
|
||||||
</div>
|
</div>
|
||||||
<div>
|
|
||||||
<transition-stub style="margin-right: 5px;">
|
<transition-stub style="margin-right: 5px;">
|
||||||
<span class="van-tag van-tag--plain van-tag--danger">
|
<span class="van-tag van-tag--plain van-tag--danger">
|
||||||
Tag
|
Tag
|
||||||
@ -146,7 +145,6 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</span>
|
</span>
|
||||||
</transition-stub>
|
</transition-stub>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
<div class="van-card__bottom">
|
<div class="van-card__bottom">
|
||||||
<div class="van-card__price">
|
<div class="van-card__price">
|
||||||
<div>
|
<div>
|
||||||
@ -169,7 +167,6 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
<div class="van-card__footer">
|
<div class="van-card__footer">
|
||||||
<div>
|
|
||||||
<button type="button"
|
<button type="button"
|
||||||
class="van-button van-button--default van-button--mini van-button--round"
|
class="van-button van-button--default van-button--mini van-button--round"
|
||||||
>
|
>
|
||||||
@ -191,5 +188,4 @@ exports[`should render demo and match snapshot 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
</div>
|
||||||
</div>
|
|
||||||
`;
|
`;
|
||||||
|
@ -55,7 +55,7 @@ const t = useTranslate({
|
|||||||
|
|
||||||
type StateItem = {
|
type StateItem = {
|
||||||
show: boolean;
|
show: boolean;
|
||||||
value: string | number | null;
|
value: string | number | undefined;
|
||||||
result: string;
|
result: string;
|
||||||
options?: CascaderOption[];
|
options?: CascaderOption[];
|
||||||
tabIndex?: number;
|
tabIndex?: number;
|
||||||
@ -68,18 +68,18 @@ const baseState = reactive<StateItem>({
|
|||||||
});
|
});
|
||||||
const customColorState = reactive<StateItem>({
|
const customColorState = reactive<StateItem>({
|
||||||
show: false,
|
show: false,
|
||||||
value: null,
|
value: undefined,
|
||||||
result: '',
|
result: '',
|
||||||
});
|
});
|
||||||
const asyncState = reactive<StateItem>({
|
const asyncState = reactive<StateItem>({
|
||||||
show: false,
|
show: false,
|
||||||
value: null,
|
value: undefined,
|
||||||
result: '',
|
result: '',
|
||||||
options: t('asyncOptions1'),
|
options: t('asyncOptions1'),
|
||||||
});
|
});
|
||||||
const customFieldState = reactive<StateItem>({
|
const customFieldState = reactive<StateItem>({
|
||||||
show: false,
|
show: false,
|
||||||
value: null,
|
value: undefined,
|
||||||
result: '',
|
result: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
@ -91,7 +91,7 @@ const fieldNames = {
|
|||||||
|
|
||||||
const customContentState = reactive<StateItem>({
|
const customContentState = reactive<StateItem>({
|
||||||
show: false,
|
show: false,
|
||||||
value: null,
|
value: undefined,
|
||||||
result: '',
|
result: '',
|
||||||
});
|
});
|
||||||
|
|
||||||
|
Loading…
x
Reference in New Issue
Block a user