vue实现顶部菜单栏,同一个页面两个菜单按钮之间的切换
先看展示结果:
点击第一个按钮,显示内容1 点击第二个按钮,展示内容2
下面上源码:注意哦,一定要代码规划,别学我(⊙o⊙)
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
|
< template >
< div >
< div class = "tab-content" >
< div class = "tab-content1" @ click = "cur=1" :class = "{active:cur==1}" >< span >数据标注</ span > </ div >
< div class = "tab-content2" @ click = "cur=2" :class = "{active:cur==2}" >案件数</ div >
</ div >
< div class = "tab" >
< div v-show = "cur==1" >
< div >内容1</ div >
</ div >
< div v-show = "cur==2" >
< div >内容2</ div >
</ div >
</ div >
</ div >
</ template >
< script >
export default {
data () {
return{
cur:1
}
},
methods:{
}
}
</ script >
< style scoped>
.tab-content .active{
background-color: #194e84 !important;
color: #fff;
}
.tab-content1{
text-align: center;
cursor: pointer;
width: 150px;
height: 30px;
border: 1px solid #ccc;
}
.tab-content2{
margin-top:-30px;
text-align: center;
cursor: pointer;
margin-left:200px;
width: 150px;
height: 30px;
border: 1px solid #ccc;
}
</ style >
|
分割线-----一个简单的按钮切换就完成了,思路very简单,实现特别方便,也很好用哦
:class="{active:cur==1}" 是选中菜单时改变样式的代码哦
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:https://blog.csdn.net/Sara0064/article/details/103183452