vue怎么实现手风琴效果_Vue实现侧边菜单栏手风琴效果实例代码

本文展示了如何在Vue中实现手风琴效果,用于侧边菜单栏。通过提供的代码实例,详细介绍了数据结构和点击事件处理,实现菜单项的展开与折叠功能。
摘要由CSDN通过智能技术生成

效果图如下所示:

  • {{item.name}}

    • {{subItem.name}}

export default {

data(){

return{

menuList:[

{

name:'字符录入',

imgUrl:require('../assets/images/icon-character.png'),

isSubShow:false,

subItems:[

{

name:'字符录入'

},

{

name:'白话文录入'

},

{

name:'文言文录入'

},

{

name:'小写数字录入'

}

]

},

{

name:'票据数据录入',

imgUrl:require('../assets/images/icon-bill.png'),

isSubShow:false,

subItems:[

{

name:'票据录入'

},

{

name:'翻打传票'

},

]

},

{

name:'交易码录入',

imgUrl:require('../assets/images/icon-transaction.png'),

isSubShow:false,

subItems:[

{

name:'交易码录入'

},

{

name:'交易名称录入'

},

]

},

{

name:'操作码录入',

imgUrl:require('../assets/images/icon-operation.png'),

isSubShow:false,

subItems:[

{

name:'操作码录入'

},

{

name:'操作名称录入'

},

]

},

{

name:'票据学习',

imgUrl:require('../assets/images/icon-billearn.png'),

isSubShow:false,

subItems:[

]

},

{

name:'内部凭证学习',

imgUrl:require('../assets/images/icon-voucher.png'),

isSubShow:false,

subItems:[

]

},

{

name:'现金管理学习',

imgUrl:require('../assets/images/icon-cash.png'),

isSubShow:false,

subItems:[

]

},

]

}

},

methods:{

// 点击展开折叠菜单事件

showToggle:function(item,ind){

this.menuList.forEach(i => {

// 判断如果数据中的menuList[i]的show属性不等于当前数据的isSubShow属性那么menuList[i]等于false

if (i.isSubShow !== this.menuList[ind].isSubShow) {

i.isSubShow = false;

}

});

item.isSubShow = !item.isSubShow;

console.log(item.name)

},

}

}

$menuBackColor:#f1f1f1;

$menuListH2:#8fbfef;

.asideBox{

height: 100%;

width: 300px;

aside{

background: $menuBackColor;

height: 100%;

.asideMenu{

.oneMenu{

height: 50px;

line-height: 50px;

font-size: 18px;

font-weight: normal;

color: #ffffff;

background: $menuListH2 url("../assets/images/icon-open.png") no-repeat 280px center;

border-bottom: 1px solid #669cd9;

img{

width: 20px;

height: 20px;

margin: 15px 16px 15px 20px;

vertical-align: top;

}

}

.oneMenuChild{

padding: 0 20px 0 60px;

height: 40px;

line-height: 40px;

background: $menuBackColor;

border-bottom: 1px solid #ffffff;

color: #454343;

font-size: 18px;

}

}

}

}

总结

以上所述是小编给大家介绍的Vue实现侧边菜单栏手风琴效果实例代码,希望对大家有所帮助,如果大家有任何疑问请给我留言,小编会及时回复大家的。在此也非常感谢大家对脚本之家网站的支持!

评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值