docs: add Rsbuild scaffold

This commit is contained in:
chenjiahan 2023-11-27 10:49:02 +08:00
parent d85283bdfb
commit a6983a5ca2
6 changed files with 86 additions and 8 deletions

View File

@ -51,6 +51,20 @@ npm i vant -S
npm i vant@latest-v2 -S npm i vant@latest-v2 -S
``` ```
## Scaffold
It is recommended to use [Rsbuild](https://github.com/web-infra-dev/rsbuild) to create a scaffold project.
Rsbuild is a build tool based on Rspack, developed by the author of Vant, with first-class build speed and development experience, providing first-priority support for Vant.
You can create a Rsbuild project with the following command:
```bash
npm create rsbuild@latest
```
Please visit the [Rsbuild repository](https://github.com/web-infra-dev/rsbuild) for more information.
## Quickstart ## Quickstart
```js ```js

View File

@ -54,6 +54,20 @@ npm i vant -S
npm i vant@latest-v2 -S npm i vant@latest-v2 -S
``` ```
## 脚手架
推荐使用 [Rsbuild](https://github.com/web-infra-dev/rsbuild) 来创建一个脚手架项目。
Rsbuild 是基于 Rspack 的构建工具,由 Vant 作者开发,具备一流的构建速度和开发体验,对 Vant 提供第一优先级支持。
你可以通过以下命令创建一个 Rsbuild 项目:
```bash
npm create rsbuild@latest
```
请访问 [Rsbuild 仓库](https://github.com/web-infra-dev/rsbuild) 了解更多信息。
## 快速上手 ## 快速上手
```js ```js

View File

@ -20,6 +20,20 @@
- 🍭 Support i18n - 🍭 Support i18n
- 🌍 Support SSR - 🌍 Support SSR
### Scaffold
It is recommended to use [Rsbuild](https://github.com/web-infra-dev/rsbuild) to create a scaffold project.
Rsbuild is a build tool based on Rspack, developed by the author of Vant, with first-class build speed and development experience, providing first-priority support for Vant.
You can create a Rsbuild project with the following command:
```bash
npm create rsbuild@latest
```
Please visit the [Rsbuild repository](https://github.com/web-infra-dev/rsbuild) for more information.
### Quickstart ### Quickstart
See in [Quickstart](#/en-US/quickstart). See in [Quickstart](#/en-US/quickstart).

View File

@ -30,6 +30,20 @@ Vant 是一个**轻量、可靠的移动端组件库**,于 2017 年开源。
- 🍭 支持服务器端渲染 - 🍭 支持服务器端渲染
- 🌍 支持国际化和语言包定制 - 🌍 支持国际化和语言包定制
### 脚手架
推荐使用 [Rsbuild](https://github.com/web-infra-dev/rsbuild) 来创建一个脚手架项目。
Rsbuild 是基于 Rspack 的构建工具,由 Vant 作者开发,具备一流的构建速度和开发体验,对 Vant 提供第一优先级支持。
你可以通过以下命令创建一个 Rsbuild 项目:
```bash
npm create rsbuild@latest
```
请访问 [Rsbuild 仓库](https://github.com/web-infra-dev/rsbuild) 了解更多信息。
### 快速上手 ### 快速上手
请参考[快速上手](#/zh-CN/quickstart)章节。 请参考[快速上手](#/zh-CN/quickstart)章节。

View File

@ -12,16 +12,27 @@ npm i vant -S
npm i vant@latest-v2 -S npm i vant@latest-v2 -S
``` ```
### Scaffold
It is recommended to use [Rsbuild](https://github.com/web-infra-dev/rsbuild) to create a scaffold project.
Rsbuild is a build tool based on Rspack, developed by the author of Vant, with first-class build speed and development experience, providing first-priority support for Vant.
You can create a Rsbuild project with the following command:
```bash
npm create rsbuild@latest
```
Please visit the [Rsbuild repository](https://github.com/web-infra-dev/rsbuild) for more information.
### CDN ### 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`. 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 ```html
<!-- import style --> <!-- import style -->
<link <link rel="stylesheet" href="https://unpkg.com/vant@2.12/lib/index.css" />
rel="stylesheet"
href="https://unpkg.com/vant@2.12/lib/index.css"
/>
<!-- import script --> <!-- import script -->
<script src="https://unpkg.com/vue@2.6/dist/vue.min.js"></script> <script src="https://unpkg.com/vue@2.6/dist/vue.min.js"></script>

View File

@ -18,16 +18,27 @@ npm i vant -S
npm i vant@latest-v2 -S npm i vant@latest-v2 -S
``` ```
### 脚手架
推荐使用 [Rsbuild](https://github.com/web-infra-dev/rsbuild) 来创建一个脚手架项目。
Rsbuild 是基于 Rspack 的构建工具,由 Vant 作者开发,具备一流的构建速度和开发体验,对 Vant 提供第一优先级支持。
你可以通过以下命令创建一个 Rsbuild 项目:
```bash
npm create rsbuild@latest
```
请访问 [Rsbuild 仓库](https://github.com/web-infra-dev/rsbuild) 了解更多信息。
### 通过 CDN 安装 ### 通过 CDN 安装
使用 Vant 最简单的方法是直接在 html 文件中引入 CDN 链接,之后你可以通过全局变量 `vant` 访问到所有组件。 使用 Vant 最简单的方法是直接在 html 文件中引入 CDN 链接,之后你可以通过全局变量 `vant` 访问到所有组件。
```html ```html
<!-- 引入样式文件 --> <!-- 引入样式文件 -->
<link <link rel="stylesheet" href="https://unpkg.com/vant@2.12/lib/index.css" />
rel="stylesheet"
href="https://unpkg.com/vant@2.12/lib/index.css"
/>
<!-- 引入 Vue 和 Vant 的 JS 文件 --> <!-- 引入 Vue 和 Vant 的 JS 文件 -->
<script src="https://unpkg.com/vue@2.6/dist/vue.min.js"></script> <script src="https://unpkg.com/vue@2.6/dist/vue.min.js"></script>