From 1df47afc171bf5bdcef17532eecbcd59f78685f9 Mon Sep 17 00:00:00 2001
From: neverland <chenjiahan@youzan.com>
Date: Fri, 15 Apr 2022 11:38:34 +0800
Subject: [PATCH] docs(ContactCard): fix missing editable prop (#10507)

---
 packages/vant/src/contact-card/README.md       | 13 +++++++------
 packages/vant/src/contact-card/README.zh-CN.md | 13 +++++++------
 2 files changed, 14 insertions(+), 12 deletions(-)

diff --git a/packages/vant/src/contact-card/README.md b/packages/vant/src/contact-card/README.md
index 3912c0c32..3986f4368 100644
--- a/packages/vant/src/contact-card/README.md
+++ b/packages/vant/src/contact-card/README.md
@@ -77,12 +77,13 @@ export default {
 
 ### Props
 
-| Attribute | Description          | Type     | Default            |
-| --------- | -------------------- | -------- | ------------------ |
-| type      | Can be set to `edit` | _string_ | `add`              |
-| name      | Name                 | _string_ | -                  |
-| tel       | Phone                | _string_ | -                  |
-| add-text  | Add card text        | _string_ | `Add contact info` |
+| Attribute | Description | Type | Default |
+| --- | --- | --- | --- |
+| type | Can be set to `edit` | _string_ | `add` |
+| name | Name | _string_ | - |
+| tel | Phone | _string_ | - |
+| add-text | Add card text | _string_ | `Add contact info` |
+| editable | Whether to allow editing of contacts | _boolean_ | `true` |
 
 ### Events
 
diff --git a/packages/vant/src/contact-card/README.zh-CN.md b/packages/vant/src/contact-card/README.zh-CN.md
index dfe21881d..806b65a77 100644
--- a/packages/vant/src/contact-card/README.zh-CN.md
+++ b/packages/vant/src/contact-card/README.zh-CN.md
@@ -71,12 +71,13 @@ export default {
 
 ### Props
 
-| 参数     | 说明                      | 类型     | 默认值       |
-| -------- | ------------------------- | -------- | ------------ |
-| type     | 卡片类型,可选值为 `edit` | _string_ | `add`        |
-| name     | 联系人姓名                | _string_ | -            |
-| tel      | 联系人手机号              | _string_ | -            |
-| add-text | 添加时的文案提示          | _string_ | `添加联系人` |
+| 参数     | 说明                      | 类型      | 默认值       |
+| -------- | ------------------------- | --------- | ------------ |
+| type     | 卡片类型,可选值为 `edit` | _string_  | `add`        |
+| name     | 联系人姓名                | _string_  | -            |
+| tel      | 联系人手机号              | _string_  | -            |
+| add-text | 添加时的文案提示          | _string_  | `添加联系人` |
+| editable | 是否可以编辑联系人        | _boolean_ | `true`       |
 
 ### Events