mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
* fix: Tabbar icon line-height * [new feature] progress add showPivot prop * [new feature] TabItem support vue-router * [new feature] update document header style * [Doc] add toast english ducoment * [new feature] add i18n support * feat: Extract demos from markdown * feat: Base components demos * [new feature] complete demo extract & translate * [fix] text cases * fix: add deepAssign test cases * fix: changelog detail * [new feature] AddressEdit support i18n
48 lines
1.1 KiB
Vue
48 lines
1.1 KiB
Vue
<template>
|
||
<div :class="['van-contact-card', `van-contact-card--${type}`]" v-on="$listeners">
|
||
<div class="van-contact-card__content">
|
||
<template v-if="type === 'add'">
|
||
<van-icon class="van-contact-card__icon" name="add2" />
|
||
<div class="van-contact-card__text">{{ addText || $t('addText') }}</div>
|
||
</template>
|
||
<template v-else-if="type === 'edit'">
|
||
<van-icon class="van-contact-card__icon" name="contact" />
|
||
<div class="van-contact-card__text">
|
||
<div>{{ $t('name') }}:{{ name }}</div>
|
||
<div>{{ $t('tel') }}:{{ tel }}</div>
|
||
</div>
|
||
</template>
|
||
</div>
|
||
<van-icon class="van-contact-card__arrow" name="arrow" />
|
||
</div>
|
||
</template>
|
||
|
||
<script>
|
||
import Icon from '../icon';
|
||
import { i18n } from '../locale';
|
||
|
||
export default {
|
||
name: 'van-contact-card',
|
||
|
||
mixins: [i18n],
|
||
|
||
components: {
|
||
[Icon.name]: Icon
|
||
},
|
||
|
||
props: {
|
||
addText: String,
|
||
type: {
|
||
type: String,
|
||
default: 'add'
|
||
},
|
||
name: {
|
||
type: String
|
||
},
|
||
tel: {
|
||
type: String
|
||
}
|
||
}
|
||
};
|
||
</script>
|