/*! For license information please see 6900.68f65886.js.LICENSE.txt */ (self.webpackChunk=self.webpackChunk||[]).push([["6900"],{21451:function(s,n,a){"use strict";a.r(n);var t=a("80681");let e=["innerHTML"];n.default={setup:()=>({html:""}),render:()=>((0,t.wg)(),(0,t.iD)("div",{class:"van-doc-markdown-body",innerHTML:'
Display contact information in the form of cards.
\nRegister component globally via app.use
, refer to Component Registration for more registration ways.
import { createApp } from 'vue';\nimport { ContactCard } from 'vant';\n\nconst app = createApp();\napp.use(ContactCard);\n
\n<van-contact-card type="add" @click="onAdd" />\n
\nimport { showToast } from 'vant';\n\nexport default {\n setup() {\n const onAdd = () => showToast('add');\n return {\n onAdd,\n };\n },\n};\n
\n<van-contact-card type="edit" :tel="tel" :name="name" @click="onEdit" />\n
\nimport { ref } from 'vue';\nimport { showToast } from 'vant';\n\nexport default {\n setup() {\n const tel = ref('13000000000');\n const name = ref('John Snow');\n const onEdit = () => showToast('edit');\n\n return {\n tel,\n name,\n onEdit,\n };\n },\n};\n
\n<van-contact-card\n type="edit"\n name="John Snow"\n tel="13000000000"\n :editable="false"\n/>\n
\nAttribute | \nDescription | \nType | \nDefault | \n
---|---|---|---|
type | \nCan be set to edit | \nstring | \nadd | \n
name | \nName | \nstring | \n- | \n
tel | \nPhone | \nstring | \n- | \n
add-text | \nAdd card text | \nstring | \nAdd contact info | \n
editable | \nWhether to allow editing of contacts | \nboolean | \ntrue | \n
Event | \nDescription | \nArguments | \n
---|---|---|
click | \nEmitted when component is clicked | \nevent: MouseEvent | \n
The component exports the following type definitions:
\nimport type { ContactCardType, ContactCardProps } 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-card-padding | \nvar(--van-padding-md) | \n- | \n
--van-contact-card-add-icon-size | \n40px | \n- | \n
--van-contact-card-add-icon-color | \nvar(--van-primary-color) | \n- | \n
--van-contact-card-title-line-height | \nvar(--van-line-height-md) | \n- | \n