docs(quickstart): optimize quickstart (#2726)

fix #2718
This commit is contained in:
rex 2020-02-06 20:37:39 +08:00 committed by GitHub
parent ce2a14803a
commit 771d187d43
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -8,6 +8,8 @@
### 步骤一 通过 npm 安装 ### 步骤一 通过 npm 安装
需要注意的是 **package.json****node_modules** 必须在 **miniprogram** 目录下
```bash ```bash
# 通过 npm 安装 # 通过 npm 安装
npm i @vant/weapp -S --production npm i @vant/weapp -S --production
@ -25,6 +27,25 @@ npm i vant-weapp -S --production
<img style="width: 500px;" src="https://img.yzcdn.cn/public_files/2019/08/15/fa0549210055976cb63798503611ce3d.png" /> <img style="width: 500px;" src="https://img.yzcdn.cn/public_files/2019/08/15/fa0549210055976cb63798503611ce3d.png" />
### 步骤三 修改 tsconfig.json
如果你使用 typescript 开发小程序,需要在 tsconfig.json 中增加如下配置,防止 npm 构建后 tsc 编译报错
```json
{
"baseUrl": ".",
"paths": {
"@vant/weapp/*": ["./node_modules/@vant/weapp/dist/*"]
}
...
}
```
### 步骤四 修改 app.json
将 app.json 中的 `"style": "v2"` 去除,小程序的[新版基础组件](https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#style)强行加上了许多样式,难以去除,不关闭将造成部分组件样式混乱。
### 示例工程 ### 示例工程
我们提供了一个[示例工程](https://github.com/youzan/vant-demo),示例工程会帮助你了解如下内容: 我们提供了一个[示例工程](https://github.com/youzan/vant-demo),示例工程会帮助你了解如下内容:
@ -34,18 +55,25 @@ npm i vant-weapp -S --production
## 使用 ## 使用
### 在 app.json 中去除 "style": "v2"
小程序给[新版基础组件](https://developers.weixin.qq.com/miniprogram/dev/reference/configuration/app.html#style)强行加上了许多样式,难以去除,不关闭将造成样式混乱。
### 引入组件 ### 引入组件
以 Button 组件为例,只需要在`app.json``index.json`中配置 Button 对应的路径即可。如果你是通过下载源代码的方式使用 @vant/weapp,请将路径修改为项目中 @vant/weapp 所在的目录。 以 Button 组件为例,只需要在`app.json``index.json`中配置 Button 对应的路径即可。如果你是通过下载源代码的方式使用 @vant/weapp,请将路径修改为项目中 @vant/weapp 所在的目录。
```json ```json
// 通过 npm 安装
// app.json // app.json
"usingComponents": { "usingComponents": {
"van-button": "@vant/weapp/dist/button" "van-button": "@vant/weapp/button"
}
```
```json
// 通过下载源码使用
// app.json
"usingComponents": {
"van-button": "path/to/@vant/weapp/dist/button"
} }
``` ```