mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
56 lines
1.0 KiB
Vue
56 lines
1.0 KiB
Vue
<template>
|
|
<div :class="b({ active })" @click="onClick">
|
|
<div :class="b('icon', { dot })">
|
|
<slot name="icon" :active="active">
|
|
<icon v-if="icon" :name="icon" />
|
|
</slot>
|
|
<div v-if="isDef(info)" class="van-icon__info">{{ info }}</div>
|
|
</div>
|
|
<div :class="b('text')">
|
|
<slot :active="active"/>
|
|
</div>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import { isDef } from '../utils';
|
|
import create from '../utils/create';
|
|
import RouterLink from '../mixins/router-link';
|
|
|
|
export default create({
|
|
name: 'tabbar-item',
|
|
|
|
mixins: [RouterLink],
|
|
|
|
props: {
|
|
icon: String,
|
|
dot: Boolean,
|
|
info: [String, Number]
|
|
},
|
|
|
|
data() {
|
|
return {
|
|
active: false
|
|
};
|
|
},
|
|
|
|
beforeCreate() {
|
|
this.$parent.items.push(this);
|
|
},
|
|
|
|
destroyed() {
|
|
this.$parent.items.splice(this.$parent.items.indexOf(this), 1);
|
|
},
|
|
|
|
methods: {
|
|
isDef,
|
|
|
|
onClick(event) {
|
|
this.$parent.onChange(this.$parent.items.indexOf(this));
|
|
this.$emit('click', event);
|
|
this.routerLink();
|
|
}
|
|
}
|
|
});
|
|
</script>
|