mirror of
https://gitee.com/vant-contrib/vant.git
synced 2025-04-06 03:57:59 +08:00
37 lines
581 B
Vue
37 lines
581 B
Vue
<template>
|
|
<div :class="b('pane', { select: index === parent.curActive })">
|
|
<slot />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import create from '../utils/create';
|
|
import findParent from '../mixins/find-parent';
|
|
|
|
export default create({
|
|
name: 'tab',
|
|
|
|
mixins: [findParent],
|
|
|
|
props: {
|
|
title: String,
|
|
disabled: Boolean
|
|
},
|
|
|
|
computed: {
|
|
index() {
|
|
return this.parent.tabs.indexOf(this);
|
|
}
|
|
},
|
|
|
|
created() {
|
|
this.findParent('van-tabs');
|
|
this.parent.tabs.push(this);
|
|
},
|
|
|
|
destroyed() {
|
|
this.parent.tabs.splice(this.index, 1);
|
|
}
|
|
});
|
|
</script>
|