vue自定义底部导航栏Tabbar的实现代码
程序员文章站
2023-01-10 19:53:19
如图所示,要完成类似的一个底部导航切换。
首先。我们需要分为5个大的vue文件。可以根据自己的习惯来放在不同的位置。
我将5个主要的vue文件放在了5个不同的文...
如图所示,要完成类似的一个底部导航切换。
首先。我们需要分为5个大的vue文件。可以根据自己的习惯来放在不同的位置。
我将5个主要的vue文件放在了5个不同的文件夹
然后,在components文件夹里新建tabbar.vue/以及item.vue文件
item.vue文件如下
<template> <div class="itemwarp flex_mid" @click='changepage'> <span v-show='!bol'> <slot name='normalimg'></slot> </span> <span v-show='bol'> <slot name='activeimg'></slot> </span> <span v-text='txt'></span> </div> </template> <script type="text/javascript"> export default{ name: 'item', props:{ txt:{ type:string }, page:{ type:string }, sel:{ type:string } }, computed:{ bol: function(){ if(this.sel == this.page){ return true; } return false; } }, methods:{ changepage:function(){ //点击跳转对应的页面 this.$router.push('/'+this.page); this.$emit('change',this.page) } } } </script> <style type="text/css"> .itemwarp{ flex-grow: 1; display: flex; align-items: center; justify-content: center; flex-direction: column; } .itemwarp span{ font-size: 12px; } </style>
tabbar.vue文件如下
<template> <div class="tabberwarp" > <div class="warp"> <item :txt='item.txt' :page='item.page' @change='getval' v-for='item in tabbardes':sel='selected'> <img :src="item.normalimg" slot='normalimg'> <img :src="item.activeimg" slot='activeimg'> </item> </div> </div> </template> <script type="text/javascript"> import item from './item.vue' export default{ components:{ item }, data:function(){ return{ selected:'skin', tabbardes:[ { txt:'表情', page:'skin', normalimg:require('../assets/images/zz_07.jpg'), activeimg:require('../assets/images/22_03.jpg') }, { txt:'皮肤', page:'phiz', normalimg:require('../assets/images/download_skin_ic.png'), activeimg:require('../assets/images/112_26.jpg') }, { txt:'词库', page:'thesaurus', normalimg:require('../assets/images/zz_09.jpg'), activeimg:require('../assets/images/icon2_03.jpg') }, { txt:'账号', page:'account', normalimg:require('../assets/images/zz_11.jpg'), activeimg:require('../assets/images/cion_03.jpg') }, { txt:'设置', page:'setup', normalimg:require('../assets/images/zz_13.jpg'), activeimg:require('../assets/images/22_03.jpg') } ] } }, methods:{ getval:function(res){ this.selected = res; } } } </script> <style type="text/css"> .warp{ width: 100%; border-top: 1px solid #eee; background: #fff; display: flex; align-items: center; justify-content: space-around; font-size: 0; } .warp img{ width: 20px; height: 20px; } .tabberwarp img{ margin-top: 10px; margin-bottom: 5px; } .tabberwarp{ position: fixed; bottom: 0; left: 0; width: 100%; padding-bottom: 5px; background: #fff; } </style>
tabbar.vue文件和item.vue的关系为父子关系.
tabbar.vue组件 通过v-for循环tabbardes里面的数据.再通过 props 向下传递数据给子组件.item.vue能接受到父组件传递的数据.
item.vue组件绑定点击事件.
this.$router.push('/'+this.page);为跳转到对应的page
this.$emit('change',this.page)
为使用$emit 触发父组件的自定义事件 change,将this.page作为参数传递到父组件中.父组件点击获取到传递过来的参数.再通过props传递给item.vue.在computed计算属性中.返回不同的布尔值.来做底部图片的显示隐藏.
最后仅需要在app.vue中引入tabbar组件即可.
<template> <div id="app"> <router-view></router-view> <tabbar></tabbar> <div class="empty"></div> </div> </template> <script> import tabbar from'./components/tabbar' export default { name: 'app', created:function(){ this.$router.push('/') }, components:{ tabbar } } </script>
总结
以上所述是小编给大家介绍的vue自定义底部导航栏tabbar的实现代码,希望对大家有所帮助