# Slot
RouterTab supports these slots:
Slot Name | Scope | Description |
---|---|---|
default | tab | Tab item |
start | - | Tab bar start |
end | - | Tab bar end |
# Custom tab
You can customize your tabs using the available slot default
. Inside the slot you will have access to following properties/attributes
Properties | Type | Description |
---|---|---|
base | Component | RouterTab instance |
data | Object | tab data |
id | String | tab ID |
title | String | title |
tips | String | prompt |
icon | String | icon |
tabClass | String | tab class |
closable | Boolean | Whether the tab can be closed |
index | Number | tab index |
close | Function | tab closing method |
Example:
<template>
<router-tab :class="{ 'is-fullscreen': fullscreen }">
<!-- 页签开始 -->
<template #start>
<router-link
class="tab-slot-icon rt-icon-home"
to="/slot/"
title="首页"
/>
</template>
<!-- 页签结束 -->
<template #end>
<a
class="tab-slot-icon"
:class="fullscreen ? 'rt-icon-fullscreen-exit' : 'rt-icon-fullscreen'"
:title="fullscreen ? '退出全屏' : '全屏'"
@click="fullscreen = !fullscreen"
/>
</template>
<!-- 页签项插槽 -->
<template #default="tab">
<i v-if="tab.icon" class="router-tab__item-icon" :class="tab.icon" />
<span class="router-tab__item-title" :title="tab.tips">{{
tab.title
}}</span>
<span class="tab-badge">{{ tab.index }}</span>
<i
v-if="tab.closable"
class="router-tab__item-close"
@click.prevent="tab.close"
/>
</template>
</router-tab>
</template>
<script>
// 引入全屏混入
import fullscreen from '../../mixins/fullscreen'
export default {
mixins: [fullscreen]
}
</script>
<style lang="scss" scoped>
.tab-badge {
$s: 1.2em;
display: inline-block;
width: $s;
height: $s;
margin-left: 3px;
color: #fff;
font-size: 12px;
line-height: $s;
text-align: center;
vertical-align: super;
background-color: #f80;
border-radius: 100%;
}
.router-tab__item.is-active .tab-badge {
background-color: #f50;
}
// 页签前后插槽样式
.router-tab ::v-deep {
.router-tab__slot-start,
.router-tab__slot-end {
display: flex;
align-items: center;
}
}
.tab-slot-icon {
margin: 0 5px;
color: #2c3e50;
font-size: 20px;
text-decoration: none;
cursor: pointer;
&:active {
opacity: 0.8;
}
}
</style>
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87