directory adjust: delete entry index.js

This commit is contained in:
陈嘉涵
2017-08-22 17:52:16 +08:00
parent 707b48aa61
commit c494292e3f
88 changed files with 587 additions and 713 deletions

36
packages/tab/index.vue Normal file
View File

@@ -0,0 +1,36 @@
<template>
<div class="van-tab__pane" :class="classNames">
<slot></slot>
</div>
</template>
<script>
export default {
name: 'van-tab',
props: {
// 选项卡头显示文字
title: {
type: String,
required: true
},
disabled: Boolean
},
data() {
const nextIndex = this.$parent.tabs.length;
this.$parent.tabs.push({
title: this.title,
disabled: this.disabled,
index: nextIndex
});
return {
key: nextIndex
};
},
computed: {
classNames() {
return { 'van-tab__pane--select': this.key === this.$parent.curActive };
}
}
};
</script>