/*! 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:'
Edit and save the contact information.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { ContactEdit } from 'vant';\n\nconst app = createApp();\napp.use(ContactEdit);\n
\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
\nimport { 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
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
contact-info | \nContact Info | \nContactEditInfo | \n{} | \n
is-edit | \nWhether is editing | \nboolean | \nfalse | \n
is-saving | \nWhether to show save button loading status | \nboolean | \nfalse | \n
is-deleting | \nWhether to show delete button loading status | \nboolean | \nfalse | \n
tel-validator | \nThe method to validate tel | \n(tel: string) => boolean | \n- | \n
show-set-default | \nWhether to show default contact switch | \nboolean | \nfalse | \n
set-default-label | \ndefault contact switch label | \nstring | \n- | \n
Event | \nDescription | \nArguments | \n
---|---|---|
save | \nEmitted when the save button is clicked | \ncontent: contact info | \n
delete | \nEmitted when the delete button is clicked | \ncontent: contact info | \n
change-default | \nEmitted when the default contact is switched | \nchecked\uFF1Acontact is not the default | \n
key | \nDescription | \nType | \n
---|---|---|
name | \nName | \nstring | \n
tel | \nPhone | \nstring | \n
isDefault | \nIs Default | \nboolean | undefined | \n
The component exports the following type definitions:
\nimport type { ContactEditInfo, ContactEditProps } from 'vant';\n
\nThe component provides the following CSS variables, which can be used to customize styles. Please refer to ConfigProvider component.
\nName | \nDefault Value | \nDescription | \n
---|---|---|
--van-contact-edit-padding | \nvar(--van-padding-md) | \n- | \n
--van-contact-edit-fields-radius | \nvar(--van-radius-md) | \n- | \n
--van-contact-edit-buttons-padding | \nvar(--van-padding-xl) 0 | \n- | \n
--van-contact-edit-button-margin-bottom | \nvar(--van-padding-sm) | \n- | \n
--van-contact-edit-button-font-size | \nvar(--van-font-size-lg) | \n- | \n
--van-contact-edit-field-label-width | \n4.1em | \n- | \n