mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-05 19:41:42 +08:00
Merge branch '2.x' into dev
This commit is contained in:
commit
5ebecc61b3
10
README.md
10
README.md
@ -41,15 +41,13 @@
|
|||||||
## Install
|
## Install
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Using npm
|
# Install vant 2.x for Vue 2 project
|
||||||
|
npm i vant -S
|
||||||
|
|
||||||
|
# Install vant 3.x for Vue 3 project
|
||||||
npm i vant@next -S
|
npm i vant@next -S
|
||||||
|
|
||||||
# Using yarn
|
|
||||||
yarn add vant@next
|
|
||||||
```
|
```
|
||||||
|
|
||||||
> Tips: Please install Vant 3.0 for Vue 3 projects, see [issue#7035](https://github.com/youzan/vant/issues/7035).
|
|
||||||
|
|
||||||
## Quickstart
|
## Quickstart
|
||||||
|
|
||||||
```js
|
```js
|
||||||
|
@ -44,15 +44,13 @@ Vant 是**有赞前端团队**开源的移动端组件库,于 2016 年开源
|
|||||||
## 安装
|
## 安装
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 通过 npm 安装
|
# Vue 2 项目,安装 Vant 2.x 版本:
|
||||||
|
npm i vant -S
|
||||||
|
|
||||||
|
# Vue 3 项目,安装 Vant 3.x 版本:
|
||||||
npm i vant@next -S
|
npm i vant@next -S
|
||||||
|
|
||||||
# 通过 yarn 安装
|
|
||||||
yarn add vant@next
|
|
||||||
```
|
```
|
||||||
|
|
||||||
> Tips: Vue 3 项目请安装 Vant 3.0,参见 [issue#7035](https://github.com/youzan/vant/issues/7035)。
|
|
||||||
|
|
||||||
## 快速上手
|
## 快速上手
|
||||||
|
|
||||||
```js
|
```js
|
||||||
|
@ -1,8 +1,51 @@
|
|||||||
# Quickstart
|
# Quickstart
|
||||||
|
|
||||||
### Starter kit
|
## Install
|
||||||
|
|
||||||
We recomment to use [Vue Cli](https://cli.vuejs.org/) to create a project.
|
### npm
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Install vant 2.x for Vue 2 project
|
||||||
|
npm i vant -S
|
||||||
|
|
||||||
|
# Install vant 3.x for Vue 3 project
|
||||||
|
npm i vant@next -S
|
||||||
|
```
|
||||||
|
|
||||||
|
### CDN
|
||||||
|
|
||||||
|
The easiest way to use Vant is to include a CDN link in the html file, after which you can access all components via the global variable `vant`.
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- import style -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/vant@next/lib/index.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- import script -->
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/vue@next"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/vant@next/lib/vant.min.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// Render the Button component
|
||||||
|
const app = Vue.createApp({
|
||||||
|
template: `<van-button>Button</van-button>`,
|
||||||
|
});
|
||||||
|
app.use(vant);
|
||||||
|
app.mount('#app');
|
||||||
|
|
||||||
|
// Call function component
|
||||||
|
vant.Toast('Message');
|
||||||
|
|
||||||
|
// Register Lazyload directive
|
||||||
|
// app.use(vant.Lazyload);
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
### CLI
|
||||||
|
|
||||||
|
We recomment to use [Vue Cli](https://cli.vuejs.org/) to create a new project.
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# Install Vue Cli
|
# Install Vue Cli
|
||||||
@ -19,18 +62,6 @@ vue ui
|
|||||||
|
|
||||||
In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to the dependencies.
|
In the GUI, click on 'Dependencies' -> `Install Dependencies` and add `vant` to the dependencies.
|
||||||
|
|
||||||
### Install
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# Using npm
|
|
||||||
npm i vant@next -S
|
|
||||||
|
|
||||||
# Using yarn
|
|
||||||
yarn add vant@next
|
|
||||||
```
|
|
||||||
|
|
||||||
> Tips: Please install Vant 3.0 for Vue 3 projects, see [issue#7035](https://github.com/youzan/vant/issues/7035)
|
|
||||||
|
|
||||||
## Usage
|
## Usage
|
||||||
|
|
||||||
### 1. Import on demand
|
### 1. Import on demand
|
||||||
@ -94,37 +125,6 @@ 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.
|
||||||
|
|
||||||
### 4. CDN
|
|
||||||
|
|
||||||
The easiest way to use Vant is to include a CDN link in the html file, after which you can access all components via the global variable `vant`.
|
|
||||||
|
|
||||||
```html
|
|
||||||
<!-- import style -->
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="https://cdn.jsdelivr.net/npm/vant@next/lib/index.css"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- import script -->
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@next"></script>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vant@next/lib/vant.min.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
// Render the Button component
|
|
||||||
const app = Vue.createApp({
|
|
||||||
template: `<van-button>Button</van-button>`,
|
|
||||||
});
|
|
||||||
app.use(vant);
|
|
||||||
app.mount('#app');
|
|
||||||
|
|
||||||
// Call function component
|
|
||||||
vant.Toast('Message');
|
|
||||||
|
|
||||||
// Register Lazyload directive
|
|
||||||
// app.use(vant.Lazyload);
|
|
||||||
</script>
|
|
||||||
```
|
|
||||||
|
|
||||||
## Other
|
## Other
|
||||||
|
|
||||||
### Rem units
|
### Rem units
|
||||||
|
@ -1,8 +1,58 @@
|
|||||||
# 快速上手
|
# 快速上手
|
||||||
|
|
||||||
### 脚手架
|
### 介绍
|
||||||
|
|
||||||
在新项目中使用 Vant 时,推荐使用 Vue 官方提供的脚手架 [Vue Cli](https://cli.vuejs.org/zh/) 创建项目。
|
通过本章节你可以了解到 Vant 的安装方式和组件使用方法。
|
||||||
|
|
||||||
|
## 安装
|
||||||
|
|
||||||
|
### 通过 npm 安装
|
||||||
|
|
||||||
|
在现有项目中使用 Vant 时,可以通过 `npm` 或 `yarn` 进行安装:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# Vue 2 项目,安装 Vant 2.x 版本:
|
||||||
|
npm i vant -S
|
||||||
|
|
||||||
|
# Vue 3 项目,安装 Vant 3.x 版本:
|
||||||
|
npm i vant@next -S
|
||||||
|
```
|
||||||
|
|
||||||
|
### 通过 CDN 安装
|
||||||
|
|
||||||
|
使用 Vant 最简单的方法是直接在 html 文件中引入 CDN 链接,之后你可以通过全局变量 `vant` 访问到所有组件。
|
||||||
|
|
||||||
|
```html
|
||||||
|
<!-- 引入样式文件 -->
|
||||||
|
<link
|
||||||
|
rel="stylesheet"
|
||||||
|
href="https://cdn.jsdelivr.net/npm/vant@next/lib/index.css"
|
||||||
|
/>
|
||||||
|
|
||||||
|
<!-- 引入 Vue 和 Vant 的 JS 文件 -->
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/vue@next"></script>
|
||||||
|
<script src="https://cdn.jsdelivr.net/npm/vant@next/lib/vant.min.js"></script>
|
||||||
|
|
||||||
|
<script>
|
||||||
|
// 在 #app 标签下渲染一个按钮组件
|
||||||
|
const app = Vue.createApp({
|
||||||
|
template: `<van-button>按钮</van-button>`,
|
||||||
|
});
|
||||||
|
app.use(vant);
|
||||||
|
app.mount('#app');
|
||||||
|
|
||||||
|
// 调用函数组件,弹出一个 Toast
|
||||||
|
vant.Toast('提示');
|
||||||
|
|
||||||
|
// 通过 CDN 引入时不会自动注册 Lazyload 组件
|
||||||
|
// 可以通过下面的方式手动注册
|
||||||
|
// app.use(vant.Lazyload);
|
||||||
|
</script>
|
||||||
|
```
|
||||||
|
|
||||||
|
### 通过脚手架安装
|
||||||
|
|
||||||
|
在新项目中使用 Vant 时,推荐使用 Vue 官方提供的脚手架 [Vue Cli](https://cli.vuejs.org/zh/) 创建项目并安装 Vant。
|
||||||
|
|
||||||
```bash
|
```bash
|
||||||
# 安装 Vue Cli
|
# 安装 Vue Cli
|
||||||
@ -17,27 +67,17 @@ vue ui
|
|||||||
|
|
||||||

|

|
||||||
|
|
||||||
在图形化界面中,点击`依赖` -> `安装依赖`,然后将 `vant` 添加到依赖中即可。
|
在图形化界面中,点击 `依赖` -> `安装依赖`,然后将 `vant` 添加到依赖中即可。
|
||||||
|
|
||||||
### 通过 npm 安装
|
## 示例
|
||||||
|
|
||||||
在现有项目中使用 Vant 时,可以通过 `npm` 或 `yarn` 安装:
|
|
||||||
|
|
||||||
```bash
|
|
||||||
# 通过 npm 安装
|
|
||||||
npm i vant@next -S
|
|
||||||
|
|
||||||
# 通过 yarn 安装
|
|
||||||
yarn add vant@next
|
|
||||||
```
|
|
||||||
|
|
||||||
> Tips: Vue 3 项目请安装 Vant 3.0,参见 [issue#7035](https://github.com/youzan/vant/issues/7035)。
|
|
||||||
|
|
||||||
### 示例工程
|
### 示例工程
|
||||||
|
|
||||||
我们提供了一个基于 Vue Cli 的[示例工程](https://github.com/youzan/vant-demo),示例工程会帮助你了解如下内容:
|
我们提供了丰富的[示例工程](https://github.com/youzan/vant-demo),通过示例工程你可以了解如下内容:
|
||||||
|
|
||||||
- 基于 Vant 搭建单页面应用,配置按需引入组件
|
- 基于 Vue Cli 和 Vant 搭建应用
|
||||||
|
- 基于 Nuxt 和 Vant 搭建应用
|
||||||
|
- 配置按需引入组件
|
||||||
- 配置基于 Rem 的适配方案
|
- 配置基于 Rem 的适配方案
|
||||||
- 配置基于 Viewport 的适配方案
|
- 配置基于 Viewport 的适配方案
|
||||||
- 配置基于 TypeScript 的工程
|
- 配置基于 TypeScript 的工程
|
||||||
@ -111,38 +151,6 @@ app.use(Vant);
|
|||||||
|
|
||||||
> Tips: 配置按需引入后,将不允许直接导入所有组件。
|
> Tips: 配置按需引入后,将不允许直接导入所有组件。
|
||||||
|
|
||||||
### 方式四. 通过 CDN 引入
|
|
||||||
|
|
||||||
使用 Vant 最简单的方法是直接在 html 文件中引入 CDN 链接,之后你可以通过全局变量 `vant` 访问到所有组件。
|
|
||||||
|
|
||||||
```html
|
|
||||||
<!-- 引入样式文件 -->
|
|
||||||
<link
|
|
||||||
rel="stylesheet"
|
|
||||||
href="https://cdn.jsdelivr.net/npm/vant@next/lib/index.css"
|
|
||||||
/>
|
|
||||||
|
|
||||||
<!-- 引入 Vue 和 Vant 的 JS 文件 -->
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vue@next"></script>
|
|
||||||
<script src="https://cdn.jsdelivr.net/npm/vant@next/lib/vant.min.js"></script>
|
|
||||||
|
|
||||||
<script>
|
|
||||||
// 在 #app 标签下渲染一个按钮组件
|
|
||||||
const app = Vue.createApp({
|
|
||||||
template: `<van-button>按钮</van-button>`,
|
|
||||||
});
|
|
||||||
app.use(vant);
|
|
||||||
app.mount('#app');
|
|
||||||
|
|
||||||
// 调用函数组件,弹出一个 Toast
|
|
||||||
vant.Toast('提示');
|
|
||||||
|
|
||||||
// 通过 CDN 引入时不会自动注册 Lazyload 组件
|
|
||||||
// 可以通过下面的方式手动注册
|
|
||||||
// app.use(vant.Lazyload);
|
|
||||||
</script>
|
|
||||||
```
|
|
||||||
|
|
||||||
## 进阶用法
|
## 进阶用法
|
||||||
|
|
||||||
### Rem 适配
|
### Rem 适配
|
||||||
|
Loading…
x
Reference in New Issue
Block a user