/*! For license information please see 1878.07a94666.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["1878"],{31525:function(t,n,s){"use strict";s.r(n);var a=s("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,a.wg)(),(0,a.iD)("div",{class:"van-doc-markdown-body",innerHTML:'

ContactEdit

\n

Intro

\n

Edit and save the contact information.

\n

Install

\n

Register component globally via app.use, refer to Component Registration for more registration ways.

\n
import { createApp } from 'vue';\nimport { ContactEdit } from 'vant';\n\nconst app = createApp();\napp.use(ContactEdit);\n
\n

Usage

\n

Basic Usage

\n
<van-contact-edit\n  is-edit\n  show-set-default\n  :contact-info="editingContact"\n  set-default-label="Set as the default contact"\n  @save="onSave"\n  @delete="onDelete"\n/>\n
\n
import { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n  setup() {\n    const editingContact = ref({\n      tel: '',\n      name: '',\n    });\n    const onSave = (contactInfo) => showToast('Save');\n    const onDelete = (contactInfo) => showToast('Delete');\n    return {\n      onSave,\n      onDelete,\n      editingContact,\n    };\n  },\n};\n
\n

API

\n

Props

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
AttributeDescriptionTypeDefault
contact-infoContact InfoContactEditInfo{}
is-editWhether is editingbooleanfalse
is-savingWhether to show save button loading statusbooleanfalse
is-deletingWhether to show delete button loading statusbooleanfalse
tel-validatorThe method to validate tel(tel: string) => boolean-
show-set-defaultWhether to show default contact switchbooleanfalse
set-default-labeldefault contact switch labelstring-
\n

Events

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
EventDescriptionArguments
saveEmitted when the save button is clickedcontent: contact info
deleteEmitted when the delete button is clickedcontent: contact info
change-defaultEmitted when the default contact is switchedchecked\uFF1Acontact is not the default
\n

Data Structure of ContactEditInfo

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
keyDescriptionType
nameNamestring
telPhonestring
isDefaultIs Defaultboolean | undefined
\n

Types

\n

The component exports the following type definitions:

\n
import type { ContactEditInfo, ContactEditProps } from 'vant';\n
\n

Theming

\n

CSS Variables

\n

The component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.

\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n
NameDefault ValueDescription
--van-contact-edit-paddingvar(--van-padding-md)-
--van-contact-edit-fields-radiusvar(--van-radius-md)-
--van-contact-edit-buttons-paddingvar(--van-padding-xl) 0-
--van-contact-edit-button-margin-bottomvar(--van-padding-sm)-
--van-contact-edit-button-font-sizevar(--van-font-size-lg)-
--van-contact-edit-field-label-width4.1em-
\n
'},null,8,e))}}}]);