mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
44 lines
1.0 KiB
Vue
44 lines
1.0 KiB
Vue
<template>
|
||
<div class="van-contact-card" :class="`van-contact-card--${type}`" v-on="$listeners">
|
||
<div class="van-contact-card__content">
|
||
<template v-if="type === 'add'">
|
||
<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'">
|
||
<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>
|
||
<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
|
||
},
|
||
|
||
props: {
|
||
tel: String,
|
||
name: String,
|
||
addText: String,
|
||
type: {
|
||
type: String,
|
||
default: 'add'
|
||
}
|
||
}
|
||
};
|
||
</script>
|