Merge branch 'dev' into next

This commit is contained in:
chenjiahan
2020-09-28 11:46:26 +08:00
72 changed files with 259 additions and 243 deletions
+2 -2
View File
@@ -62,7 +62,7 @@ export default {
### IdNumber Keyboard
Use `extra-key` prop to set the content of bottom left button
Use `extra-key` prop to set the content of bottom left button.
```html
<van-cell plain type="primary" @touchstart.stop="show = true">
@@ -81,7 +81,7 @@ Use `extra-key` prop to set the content of bottom left button
### Keyboard With Title
Use `title` prop to set keyboard title
Use `title` prop to set keyboard title.
```html
<van-cell plain type="primary" @touchstart.stop="show = true">
+7 -7
View File
@@ -2,7 +2,7 @@
### 介绍
数字虚拟键盘,可以配合[密码输入框组件](#/zh-CN/password-input)或自定义的输入框组件使用
数字虚拟键盘,可以配合[密码输入框组件](#/zh-CN/password-input)或自定义的输入框组件使用
### 引入
@@ -18,7 +18,7 @@ app.use(NumberKeyboard);
### 默认样式
数字键盘提供了 `input``delete``blur` 事件,分别对应输入内容、删除内容和失去焦点的动作
数字键盘提供了 `input``delete``blur` 事件,分别对应输入内容、删除内容和失去焦点的动作
```html
<van-cell @touchstart.stop="show = true">
@@ -56,7 +56,7 @@ export default {
### 带右侧栏的键盘
将 theme 属性设置为 `custom` 来展示键盘的右侧栏,常用于输入金额的场景
将 theme 属性设置为 `custom` 来展示键盘的右侧栏,常用于输入金额的场景
```html
<van-number-keyboard
@@ -72,7 +72,7 @@ export default {
### 身份证号键盘
通过 `extra-key` 属性可以设置左下角按键内容,比如需要输入身份证号时,可以将 `extra-key` 设置为 `X`
通过 `extra-key` 属性可以设置左下角按键内容,比如需要输入身份证号时,可以将 `extra-key` 设置为 `X`
```html
<van-cell plain type="primary" @touchstart.stop="show = true">
@@ -90,7 +90,7 @@ export default {
### 键盘标题
通过 `title` 属性可以设置键盘标题
通过 `title` 属性可以设置键盘标题
```html
<van-cell plain type="primary" @touchstart.stop="show = true">
@@ -109,7 +109,7 @@ export default {
### 配置多个按键
当 theme 为 `custom` 时,支持以数组的形式配置两个 `extra-key`
当 theme 为 `custom` 时,支持以数组的形式配置两个 `extra-key`
```html
<van-cell plain type="primary" @touchstart.stop="show = true">
@@ -127,7 +127,7 @@ export default {
### 双向绑定
可以通过 `v-model` 绑定键盘当前输入值
可以通过 `v-model` 绑定键盘当前输入值
```html
<van-field readonly clickable :value="value" @touchstart.stop="show = true" />