Merge branch '2.x' into dev

This commit is contained in:
chenjiahan 2020-10-25 09:15:20 +08:00
commit 23dd366ced
6 changed files with 25 additions and 9 deletions

View File

@ -30,10 +30,11 @@
## Features ## Features
- 65+ Reusable components - 65+ Reusable components
- 4kb Component average size - 1kb Component average size (min+gzip)
- 90%+ Unit test coverage - 90%+ Unit test coverage
- Extensive documentation and demos - Extensive documentation and demos
- Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) - Support Vue 2 & Vue 3
- Support Tree Shaking
- Support Custom Theme - Support Custom Theme
- Support i18n - Support i18n
- Support TS - Support TS

View File

@ -28,14 +28,15 @@
Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源,已持续维护 4 年时间。Vant 对内承载了有赞所有核心业务,对外服务十多万开发者,是业界主流的移动端组件库之一。 Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源,已持续维护 4 年时间。Vant 对内承载了有赞所有核心业务,对外服务十多万开发者,是业界主流的移动端组件库之一。
目前 Vant 官方提供了 [Vue 版本](https://vant-contrib.gitee.io/vant)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/mxdi9i7/vant-react)。 目前 Vant 官方提供了 [Vue 2 版本](https://vant-contrib.gitee.io/vant)、[Vue 3 版本](https://vant-contrib.gitee.io/vant/next)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/mxdi9i7/vant-react)。
## 特性 ## 特性
- 提供 60 多个高质量组件,覆盖移动端各类场景 - 提供 60 多个高质量组件,覆盖移动端各类场景
- 性能极佳,组件平均体积不到 4kb - 性能极佳,组件平均体积不到 1kbmin+gzip
- 单元测试覆盖率 90%+,提供稳定性保障 - 单元测试覆盖率 90%+,提供稳定性保障
- 完善的中英文文档和示例 - 完善的中英文文档和示例
- 支持 Vue 2 & Vue 3
- 支持按需引入 - 支持按需引入
- 支持主题定制 - 支持主题定制
- 支持国际化 - 支持国际化

View File

@ -9,10 +9,11 @@
### Features ### Features
- 65+ Reusable components - 65+ Reusable components
- 4kb Component average size - 1kb Component average size (min+gzip)
- 90%+ Unit test coverage - 90%+ Unit test coverage
- Extensive documentation and demos - Extensive documentation and demos
- Support [babel-plugin-import](https://github.com/ant-design/babel-plugin-import) - Support Vue 2 & Vue 3
- Support Tree Shaking
- Support Custom Theme - Support Custom Theme
- Support i18n - Support i18n
- Support TS - Support TS

View File

@ -10,14 +10,15 @@
Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源,已持续维护 4 年时间。Vant 对内承载了有赞所有核心业务,对外服务十多万开发者,是业界主流的移动端组件库之一。 <br><br> Vant 是**有赞前端团队**开源的移动端组件库,于 2017 年开源,已持续维护 4 年时间。Vant 对内承载了有赞所有核心业务,对外服务十多万开发者,是业界主流的移动端组件库之一。 <br><br>
目前 Vant 官方提供了 [Vue 版本](https://vant-contrib.gitee.io/vant)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/mxdi9i7/vant-react)。 目前 Vant 官方提供了 [Vue 2 版本](https://vant-contrib.gitee.io/vant)、[Vue 3 版本](https://vant-contrib.gitee.io/vant/next)和[微信小程序版本](http://vant-contrib.gitee.io/vant-weapp),并由社区团队维护 [React 版本](https://github.com/mxdi9i7/vant-react)。
### 特性 ### 特性
- 提供 60 多个高质量组件,覆盖移动端各类场景 - 提供 60 多个高质量组件,覆盖移动端各类场景
- 性能极佳,组件平均体积不到 4kb - 性能极佳,组件平均体积不到 1kbmin+gzip
- 单元测试覆盖率 90%+,提供稳定性保障 - 单元测试覆盖率 90%+,提供稳定性保障
- 完善的中英文文档和示例 - 完善的中英文文档和示例
- 支持 Vue 2 & Vue 3
- 支持按需引入 - 支持按需引入
- 支持主题定制 - 支持主题定制
- 支持国际化 - 支持国际化

View File

@ -21,7 +21,9 @@ app.use(Search);
```js ```js
export default { export default {
data() { data() {
value: ''; return {
value: '',
};
}, },
}; };
``` ```

View File

@ -24,6 +24,16 @@ app.use(Search);
<van-search v-model="value" placeholder="请输入搜索关键词" /> <van-search v-model="value" placeholder="请输入搜索关键词" />
``` ```
```js
export default {
data() {
return {
value: '',
};
},
};
```
### 事件监听 ### 事件监听
Search 组件提供了 `search``cancel` 事件,`search` 事件在点击键盘上的搜索/回车按钮后触发,`cancel` 事件在点击搜索框右侧取消按钮时触发。 Search 组件提供了 `search``cancel` 事件,`search` 事件在点击键盘上的搜索/回车按钮后触发,`cancel` 事件在点击搜索框右侧取消按钮时触发。