diff --git a/docs/markdown/en-US/cell.md b/docs/markdown/en-US/cell.md index 4e1b5b8e9..d4b778666 100644 --- a/docs/markdown/en-US/cell.md +++ b/docs/markdown/en-US/cell.md @@ -78,6 +78,8 @@ Vue.use(CellGroup); | url | Link | `String` | - | - | | to | Target route of the link, same as to of `vue-router` | `String | Object` | - | - | | replace | If true, the navigation will not leave a history record | `String` | `false` | - | +| border | Whether to show inner border | `Boolean` | `true` | - | +| clickable | Whether to show click feedback when clicked | `Boolean` | `false` | - | | is-link | Whether to show link icon | `Boolean` | `false` | - | | required | Whether to show required mark | `Boolean` | `false` | - | diff --git a/docs/markdown/zh-CN/cell.md b/docs/markdown/zh-CN/cell.md index 6a6df48d5..a351adc89 100644 --- a/docs/markdown/zh-CN/cell.md +++ b/docs/markdown/zh-CN/cell.md @@ -85,7 +85,9 @@ Vue.use(CellGroup); | url | 跳转链接 | `String` | - | - | | to | 路由跳转对象,同 `vue-router` 的 to | `String | Object` | - | - | | replace | 跳转时是否替换当前 history | `String` | `false` | - | -| is-link | 是否展示右侧箭头 | `Boolean` | `false` | - | +| border | 是否显示内边框 | `Boolean` | `true` | - | +| clickable | 是否开启点击反馈 | `Boolean` | `false` | - | +| is-link | 是否展示右侧箭头并开启点击反馈 | `Boolean` | `false` | - | | required | 是否显示表单必填符号 | `Boolean` | `false` | - | ### Slot diff --git a/docs/src/components/MobileNav.vue b/docs/src/components/MobileNav.vue index dabba40c5..4d697ddd5 100644 --- a/docs/src/components/MobileNav.vue +++ b/docs/src/components/MobileNav.vue @@ -80,6 +80,10 @@ export default { position: relative; user-select: none; + &:active { + background-color: $active-color; + } + &--open { color: #999; } diff --git a/packages/address-list/index.vue b/packages/address-list/index.vue index e837d14ef..1374030b0 100644 --- a/packages/address-list/index.vue +++ b/packages/address-list/index.vue @@ -2,12 +2,12 @@
{{ $t('name') }}:{{ item.name }}
{{ $t('tel') }}:{{ item.tel }}