docs(quickstart): rename vant-weapp to @vant/weapp

This commit is contained in:
rex-zsd 2019-11-29 16:28:24 +08:00
parent c73bc5d3c4
commit 5ae6d1a146
51 changed files with 84 additions and 84 deletions

View File

@ -10,13 +10,13 @@
```bash
# 通过 npm 安装
npm i vant-weapp -S --production
npm i @vant/weapp -S --production
# 通过 yarn 安装
yarn add vant-weapp --production
yarn add @vant/weapp --production
# 安装 1.0-beta 版本
npm i @vant/weapp -S --production
# 安装 0.x 版本
npm i vant-weapp -S --production
```
### 步骤二 构建 npm 包
@ -29,12 +29,12 @@ npm i @vant/weapp -S --production
### 引入组件
以 Button 组件为例,只需要在`app.json``index.json`中配置 Button 对应的路径即可。如果你是通过下载源代码的方式使用 vant-weapp请将路径修改为项目中 vant-weapp 所在的目录。
以 Button 组件为例,只需要在`app.json``index.json`中配置 Button 对应的路径即可。如果你是通过下载源代码的方式使用 @vant/weapp,请将路径修改为项目中 @vant/weapp 所在的目录。
```json
// app.json
"usingComponents": {
"van-button": "vant-weapp/button"
"van-button": "@vant/weapp/button"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-action-sheet": "path/to/vant-weapp/dist/action-sheet/index"
"van-action-sheet": "path/to/@vant/weapp/dist/action-sheet/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-area": "path/to/vant-weapp/dist/area/index"
"van-area": "path/to/@vant/weapp/dist/area/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-button": "path/to/vant-weapp/dist/button/index"
"van-button": "path/to/@vant/weapp/dist/button/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-card": "path/to/vant-weapp/dist/card/index"
"van-card": "path/to/@vant/weapp/dist/card/index"
}
```

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-cell": "path/to/vant-weapp/dist/cell/index",
"van-cell-group": "path/to/vant-weapp/dist/cell-group/index"
"van-cell": "path/to/@vant/weapp/dist/cell/index",
"van-cell-group": "path/to/@vant/weapp/dist/cell-group/index"
}
```

View File

@ -5,8 +5,8 @@
```json
"usingComponents": {
"van-checkbox": "path/to/vant-weapp/dist/checkbox/index",
"van-checkbox-group": "path/to/vant-weapp/dist/checkbox-group/index"
"van-checkbox": "path/to/@vant/weapp/dist/checkbox/index",
"van-checkbox-group": "path/to/@vant/weapp/dist/checkbox-group/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-circle": "path/to/vant-weapp/dist/circle/index"
"van-circle": "path/to/@vant/weapp/dist/circle/index"
}
```

View File

@ -10,8 +10,8 @@ Layout 提供了`van-row`和`van-col`两个组件来进行行列布局
```json
"usingComponents": {
"van-row": "path/to/vant-weapp/dist/row/index",
"van-col": "path/to/vant-weapp/dist/col/index"
"van-row": "path/to/@vant/weapp/dist/row/index",
"van-col": "path/to/@vant/weapp/dist/col/index"
}
```

View File

@ -5,8 +5,8 @@
```json
"usingComponents": {
"van-collapse": "path/to/vant-weapp/dist/collapse/index",
"van-collapse-item": "path/to/vant-weapp/dist/collapse-item/index"
"van-collapse": "path/to/@vant/weapp/dist/collapse/index",
"van-collapse-item": "path/to/@vant/weapp/dist/collapse-item/index"
}
```

View File

@ -9,7 +9,7 @@ Vant 中默认包含了一些常用样式,可以直接通过 className 的方
在 app.wxss 中引入内置样式
```css
@import "path/to/vant-weapp/dist/common/index.wxss";
@import "path/to/@vant/weapp/dist/common/index.wxss";
```
## 代码演示

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-count-down": "path/to/vant-weapp/dist/count-down/index"
"van-count-down": "path/to/@vant/weapp/dist/count-down/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-datetime-picker": "path/to/vant-weapp/dist/datetime-picker/index"
"van-datetime-picker": "path/to/@vant/weapp/dist/datetime-picker/index"
}
```

View File

@ -12,7 +12,7 @@
```json
"usingComponents": {
"van-dialog": "path/to/vant-weapp/dist/dialog/index"
"van-dialog": "path/to/@vant/weapp/dist/dialog/index"
}
```
@ -27,7 +27,7 @@
```
```javascript
import Dialog from 'path/to/vant-weapp/dist/dialog/dialog';
import Dialog from 'path/to/@vant/weapp/dist/dialog/dialog';
Dialog.alert({
title: '标题',

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-divider": "path/to/vant-weapp/dist/divider/index"
"van-divider": "path/to/@vant/weapp/dist/divider/index"
}
```

View File

@ -10,8 +10,8 @@
```json
"usingComponents": {
"van-dropdown-menu": "path/to/vant-weapp/dist/dropdown-menu/index",
"van-dropdown-item": "path/to/vant-weapp/dist/dropdown-item/index"
"van-dropdown-menu": "path/to/@vant/weapp/dist/dropdown-menu/index",
"van-dropdown-item": "path/to/@vant/weapp/dist/dropdown-item/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-field": "path/to/vant-weapp/dist/field/index"
"van-field": "path/to/@vant/weapp/dist/field/index"
}
```
@ -155,7 +155,7 @@ Page({
同时 `placeholder-style``vertical-align``line-height` 等大量css属性都不生效。
这一系列的问题导致了 placeholder 在真机上可能会出现偏移。vant-weapp 已经尽量抹平 textarea 在不同环境下的差异。
这一系列的问题导致了 placeholder 在真机上可能会出现偏移。@vant/weapp 已经尽量抹平 textarea 在不同环境下的差异。
微信已经将 `padding` 的问题列为修复中的问题,可以查看[微信开放社区](https://developers.weixin.qq.com/community/develop/issue/96)

View File

@ -6,9 +6,9 @@
```json
"usingComponents": {
"van-goods-action": "path/to/vant-weapp/dist/goods-action/index",
"van-goods-action-icon": "path/to/vant-weapp/dist/goods-action-icon/index",
"van-goods-action-button": "path/to/vant-weapp/dist/goods-action-button/index"
"van-goods-action": "path/to/@vant/weapp/dist/goods-action/index",
"van-goods-action-icon": "path/to/@vant/weapp/dist/goods-action-icon/index",
"van-goods-action-button": "path/to/@vant/weapp/dist/goods-action-button/index"
}
```

View File

@ -10,8 +10,8 @@
```json
"usingComponents": {
"van-grid": "path/to/vant-weapp/dist/grid/index",
"van-grid-item": "path/to/vant-weapp/dist/grid-item/index"
"van-grid": "path/to/@vant/weapp/dist/grid/index",
"van-grid-item": "path/to/@vant/weapp/dist/grid-item/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-icon": "path/to/vant-weapp/dist/icon/index"
"van-icon": "path/to/@vant/weapp/dist/icon/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-image": "path/to/vant-weapp/dist/image/index"
"van-image": "path/to/@vant/weapp/dist/image/index"
}
```

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-index-bar": "path/to/vant-weapp/dist/van-index-bar/index",
"van-index-anchor": "path/to/vant-weapp/dist/van-index-anchor/index"
"van-index-bar": "path/to/@vant/weapp/dist/van-index-bar/index",
"van-index-anchor": "path/to/@vant/weapp/dist/van-index-anchor/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-loading": "path/to/vant-weapp/dist/loading/index"
"van-loading": "path/to/@vant/weapp/dist/loading/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-nav-bar": "path/to/vant-weapp/dist/nav-bar/index"
"van-nav-bar": "path/to/@vant/weapp/dist/nav-bar/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-notice-bar": "path/to/vant-weapp/dist/notice-bar/index"
"van-notice-bar": "path/to/@vant/weapp/dist/notice-bar/index"
}
```

View File

@ -5,7 +5,7 @@
```json
"usingComponents": {
"van-notify": "path/to/vant-weapp/dist/notify/index"
"van-notify": "path/to/@vant/weapp/dist/notify/index"
}
```
@ -14,7 +14,7 @@
### 基础用法
```js
import Notify from 'path/to/vant-weapp/dist/notify/notify';
import Notify from 'path/to/@vant/weapp/dist/notify/notify';
Notify('通知内容');
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-overlay": "path/to/vant-weapp/dist/overlay/index"
"van-overlay": "path/to/@vant/weapp/dist/overlay/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-panel": "path/to/vant-weapp/dist/panel/index"
"van-panel": "path/to/@vant/weapp/dist/panel/index"
}
```

View File

@ -9,7 +9,7 @@
```json
"usingComponents": {
"van-picker": "path/to/vant-weapp/dist/picker/index"
"van-picker": "path/to/@vant/weapp/dist/picker/index"
}
```
@ -22,7 +22,7 @@
```
```javascript
import Toast from 'path/to/vant-weapp/dist/toast/toast';
import Toast from 'path/to/@vant/weapp/dist/toast/toast';
Page({
data: {
@ -61,7 +61,7 @@ Page({
```
```javascript
import Toast from 'path/to/vant-weapp/dist/toast/toast';
import Toast from 'path/to/@vant/weapp/dist/toast/toast';
Page({
data: {

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-popup": "path/to/vant-weapp/dist/popup/index"
"van-popup": "path/to/@vant/weapp/dist/popup/index"
}
```

View File

@ -5,7 +5,7 @@
```json
"usingComponents": {
"van-progress": "path/to/vant-weapp/dist/progress/index"
"van-progress": "path/to/@vant/weapp/dist/progress/index"
}
```

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-radio": "path/to/vant-weapp/dist/radio/index",
"van-radio-group": "path/to/vant-weapp/dist/radio-group/index"
"van-radio": "path/to/@vant/weapp/dist/radio/index",
"van-radio-group": "path/to/@vant/weapp/dist/radio-group/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-rate": "path/to/vant-weapp/dist/rate/index"
"van-rate": "path/to/@vant/weapp/dist/rate/index"
}
```
## 代码演示

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-search": "path/to/vant-weapp/dist/search/index"
"van-search": "path/to/@vant/weapp/dist/search/index"
}
```

View File

@ -55,7 +55,7 @@ VantComponent({
onCancel() {
/**
*
* https://github.com/youzan/vant-weapp/issues/1768
* https://github.com/youzan/@vant/weapp/issues/1768
*/
setTimeout(() => {
this.setData({ value: '' });

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-sidebar": "path/to/vant-weapp/dist/sidebar/index",
"van-sidebar-item": "path/to/vant-weapp/dist/sidebar-item/index"
"van-sidebar": "path/to/@vant/weapp/dist/sidebar/index",
"van-sidebar-item": "path/to/@vant/weapp/dist/sidebar-item/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-skeleton": "path/to/vant-weapp/dist/skeleton/index"
"van-skeleton": "path/to/@vant/weapp/dist/skeleton/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-slider": "path/to/vant-weapp/dist/slider/index"
"van-slider": "path/to/@vant/weapp/dist/slider/index"
}
```

View File

@ -10,7 +10,7 @@
```json
"usingComponents": {
"van-stepper": "path/to/vant-weapp/dist/stepper/index"
"van-stepper": "path/to/@vant/weapp/dist/stepper/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-steps": "path/to/vant-weapp/dist/steps/index"
"van-steps": "path/to/@vant/weapp/dist/steps/index"
}
```

View File

@ -10,7 +10,7 @@ Sticky 组件与 CSS 中`position: sticky`属性实现的效果一致,当组
```json
"usingComponents": {
"van-sticky": "path/to/vant-weapp/dist/sticky/index"
"van-sticky": "path/to/@vant/weapp/dist/sticky/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-submit-bar": "path/to/vant-weapp/dist/submit-bar/index"
"van-submit-bar": "path/to/@vant/weapp/dist/submit-bar/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-swipe-cell": "path/to/vant-weapp/dist/swipe-cell/index"
"van-swipe-cell": "path/to/@vant/weapp/dist/swipe-cell/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-switch": "path/to/vant-weapp/dist/switch/index"
"van-switch": "path/to/@vant/weapp/dist/switch/index"
}
```

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-tab": "path/to/vant-weapp/dist/tab/index",
"van-tabs": "path/to/vant-weapp/dist/tabs/index"
"van-tab": "path/to/@vant/weapp/dist/tab/index",
"van-tabs": "path/to/@vant/weapp/dist/tabs/index"
}
```

View File

@ -6,8 +6,8 @@
```json
"usingComponents": {
"van-tabbar": "path/to/vant-weapp/dist/tabbar/index",
"van-tabbar-item": "path/to/vant-weapp/dist/tabbar-item/index"
"van-tabbar": "path/to/@vant/weapp/dist/tabbar/index",
"van-tabbar-item": "path/to/@vant/weapp/dist/tabbar-item/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-tag": "path/to/vant-weapp/dist/tag/index"
"van-tag": "path/to/@vant/weapp/dist/tag/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-toast": "path/to/vant-weapp/dist/toast/index"
"van-toast": "path/to/@vant/weapp/dist/toast/index"
}
```
@ -15,7 +15,7 @@
### 文字提示
```javascript
import Toast from 'path/to/vant-weapp/dist/toast/toast';
import Toast from 'path/to/@vant/weapp/dist/toast/toast';
Toast('我是提示文案,建议不超过十五字~');
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-transition": "path/to/vant-weapp/dist/transition/index"
"van-transition": "path/to/@vant/weapp/dist/transition/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-tree-select": "path/to/vant-weapp/dist/tree-select/index"
"van-tree-select": "path/to/@vant/weapp/dist/tree-select/index"
}
```

View File

@ -6,7 +6,7 @@
```json
"usingComponents": {
"van-uploader": "path/to/vant-weapp/dist/uploader/index"
"van-uploader": "path/to/@vant/weapp/dist/uploader/index"
}
```