vant/packages/tab/index.vue

76 lines
1.3 KiB
Vue

<template>
<div
v-show="isSelected || parent.animated"
:class="b('pane')"
>
<slot v-if="inited" />
<div
v-if="$slots.title"
ref="title"
>
<slot name="title" />
</div>
</div>
</template>
<script>
/* eslint-disable object-shorthand */
import create from '../utils/create';
import findParent from '../mixins/find-parent';
export default create({
name: 'tab',
mixins: [findParent],
props: {
title: String,
disabled: Boolean
},
data() {
return {
inited: false
};
},
computed: {
index() {
return this.parent.tabs.indexOf(this);
},
isSelected() {
return this.index === this.parent.curActive;
}
},
watch: {
'parent.curActive'() {
this.inited = this.inited || this.isSelected;
},
title() {
this.parent.setLine();
}
},
created() {
this.findParent('van-tabs');
},
mounted() {
const { tabs } = this.parent;
const index = this.parent.$slots.default.indexOf(this.$vnode);
tabs.splice(index === -1 ? tabs.length : index, 0, this);
if (this.$slots.title) {
this.parent.renderTitle(this.$refs.title, this.index);
}
},
beforeDestroy() {
this.parent.tabs.splice(this.index, 1);
}
});
</script>