基于Vue开发的tab切换组件
2018-06-24 01:06:35来源:未知 阅读 ()
github地址:https://github.com/MengFangui/VueTabSwitch
1、index.html
<!DOCTYPE html>
<html lang="zh">
<head>
<meta charset="UTF-8" />
<title>基于Vue开发的标签页组件</title>
<link rel="stylesheet" type="text/css" href="css/style.css" />
</head>
<body>
<div id="app" v-cloak>
<!--设置value便于父组件与子组件通信-->
<tabs v-model='value'>
<pane label="标签一" name='1'>
标签一的内容
</pane>
<pane label="标签二" name='2'>
标签二的内容
</pane>
<pane label="标签三" name='3'>
标签三的内容
</pane>
</tabs>
</div>
<script src="https://cdn.bootcss.com/vue/2.5.9/vue.min.js"></script>
<script src="js/pane.js" type="text/javascript" charset="utf-8"></script>
<script src="js/tabs.js" type="text/javascript" charset="utf-8"></script>
<script type="text/javascript">
var app = new Vue({
el: '#app',
data: {
//初始显示第几个
value: '1'
}
});
</script>
</body>
</html>
2、tabs.js
Vue.component('tabs', {
template: `
<div class="tabs">
<div class="tabs-bar">
<!--标题页的标题 v-for遍历, :class 动态绑定class-->
<div :class="tabCls(item)" v-for="(item,index) in navList" @click="handleChange(index)">
{{item.label}}
</div>
</div>
<div class="tabs-content">
<!--这里的slot就是嵌套的pane组件的内容-->
<slot></slot>
</div>
</div>
`,
data: function() {
return {
//将pane的标题保存到数组中
navList: [],
//保存父组件的value到currentValue变量中,以便在本地维护
currentValue: this.value
}
},
props: {
//接收父组件的value
value: {
type: [String]
}
},
methods: {
//使用$children遍历子组件,得到所有的pane组件
getTabs: function() {
return this.$children.filter(function(item) {
return item.$options.name === 'pane';
})
},
//更新tabs
updateNav() {
this.navList = [];
var _this = this;
this.getTabs().forEach(function(pane, index) {
_this.navList.push({
label: pane.label,
name: pane.name || index
});
//如果没有设置name,默认设置为索引值
if(!pane.name) {
pane.name = index;
}
//设置第一个pane为当前显示的tab
if(index === 0) {
if(!_this.currentValue) {
_this.currentValue = pane.name || index;
}
}
});
this.updateStatus();
},
updateStatus() {
var tabs = this.getTabs();
var _this = this;
//显示当前选中的tab对应的pane组件,隐藏没有选中的
tabs.forEach(function(tab) {
return tab.show = tab.name === _this.currentValue;
})
},
tabCls: function(item) {
return [
'tabs-tab',
{
//为当前选中的tab加一个tabs-tab-active class
'tabs-tab-active': item.name === this.currentValue
}
]
},
//点击tab标题触发
handleChange: function(index) {
var nav = this.navList[index];
var name = nav.name;
//改变当前选中的tab,触发watch
this.currentValue = name;
//实现子组件与父组件通信
this.$emit('input', name);
}
},
watch: {
value: function(val) {
this.currentValue = val;
},
currentValue: function() {
//tab发生变化时,更新pane的显示状态
this.updateStatus();
}
}
})
3、pane.js
Vue.component('pane',{
template:`
<div class="pane" v-show="show">
<slot></slot>
</div>
`,
data:function(){
return {
show:true
}
},
//props为来自父组件的变量,实现父组件与子组件通信
props:{
//设置pane的标识
name:{
type:String
},
//label是设置标题
label:{
type:String,
default:''
}
},
methods:{
updateNav:function(){
//$parent 父链,通知父组件(tabs)进行更新。
//说明:在业务中尽可能不要使用$parent来操作父组件,$parent适合标签页这样的独立组件
this.$parent.updateNav();
}
},
//监听label
watch:{
label(){
this.updateNav();
}
},
mounted(){
//初始化tabs
this.updateNav();
}
})
4、style.css
[v-cloak]{
display: none;
}
.tabs{
font-size: 14px;
color: #657180;
}
.tabs-bar:after{
content: '';
display: block;
width: 100%;
height: 1px;
background: #d7dde4;
margin-top:-1px;
}
.tabs-tab{
display: inline-block;
padding: 4px 16px;
margin-right: 6px;
background: #fff;
border: 1px solid #d7dde4;
cursor: pointer;
position: relative;
}
.tabs-tab-active{
color: #3399ff;
border-top: 1px solid #3399ff;
border-bottom: 1px solid #3399ff;
}
.tabs-tab-active:before{
content: '';
display: block;
height: 1px;
background: #3399ff;
position: absolute;
top: 0;
left: 0;
right: 0;
}
.tabs-content{
padding: 8px 0;
}
5、效果:
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- 基于JQuery的多标签实现代码 2020-03-29
- jQuery插件开发全解析 2020-03-25
- JS简单去除数组中重复项的方法 2020-03-16
- vue.js开发环境搭建教程 2020-03-16
- 微信小程序开发图片拖拽实例详解 2020-03-16
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash