index.vue
709 Bytes
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
<template>
<div class="tabheader">
<ul class="nav nav-tabs">
<li class="{{$index==active?'active':''}}" v-for="row in rows" @click="click($index)" >
<a href="javascript:">{{row.name}}</a>
</li>
</ul>
</div>
</template>
<script>
export default {
props:{
rows:{
type:Array,
default:[]
},
active: {
type: Number,
default: -1
}
},
methods: {
click: function (inIndex) {
this.rows.map(function (row) {
row.active = false;
});
this.rows[inIndex].active = true;
this.active = inIndex;
}
}
}
</script>
<style>
.tabheader{
font-family: 'microsoft yahei';
}
</style>