vue.js移动端tab组件的封装实践实例
这是vue.js系列文章第二遍,第一篇讲述的是如何搭建vue.js的开发环境,计划按进度做成一款完整的app,当然前提是时间允许的话。本文用到了stylus语法,至于为什么使用stylus而不去用sass,主要是因为stylus来自于node.js社区。总之stylus是一款高效的css预处理器,具体使用不在本文讨论范围。好了,废话不说了,下面讲述怎么封装tababr的切换。
底部tab进行页面切换,会用到vue里面的路由,也就是vue-router
我们在安装vue-cli时选中默认安装vue-router即可。
安装完毕后,打开我的项目,我们需要在router目录的index.vue中配置路由信息,具体配置信息如下
从上面图片,我们可以看到,我们一共配置了4子页面,其中redirect为配置默认组件的路由。
路由配置完成后,我们需要封装tab组件了
因为tab组件属于基础组件,所以我们新建了文件夹tab,然后在tab文件夹下面新建了tabbar组件和tababritem组件。我们先说tababritem组件的封装
tabbaritem封装
我们知道tababritem有一张正常显示图片,选中后的图片,和图片下的文字,其中属性id用来记录当前tabbaritem的组件名,属性isrouter用来记录当前选中是否是这个tababritem。
<template> <a class="m-tabbar-item" :class="{'is-active':isactive}" @click="gotorouter"> <div class="m-tabbar-item-icon" v-show="!isactive"><slot name="icon-normal"></slot></div> <div class="m-tabbar-item-icon" v-show="isactive"><slot name="icon-active"></slot></div> <div class="m-tabbar-item-text"><slot></slot></div> </a> </template> <script type="text/ecmascript-6"> export default{ props: { id: { type: string }, isrouter: { type: boolean, default: false } }, computed: { isactive () { return this.isrouter } }, methods: { gotorouter () { this.$parent.$emit('tabbaractionevent', this.id) // 判断是否为路由跳转 this.$router.push(this.id) } } } </script> <style scoped lang="stylus" rel="stylesheet/stylus"> .m-tabbar-item flex: 1 text-align: center .m-tabbar-item-icon padding-top: 5px padding-bottom 1px img width: 24px height: 24px .m-tabbar-item-text font-size: 8px color:#949494 &.is-active .m-tabbar-item-text color: #fa3e25 </style>
接下来,我们要封装tababr,tabbar里面需要包含tabbaritem,主要设置了下tabbar的样式,具体代码如下
tabbar的封装
<template> <div class="m-tabbar"> <slot></slot> </div> </template> <script type="text/ecmascript-6"> export default {} </script> <style scoped lang="stylus" rel="stylesheet/stylus"> .m-tabbar display: flex flex-direction: row position: fixed bottom: 0 left: 0 right: 0 width: 100% overflow: hidden height: 50px background: #fff border-top: 1px solid #e4e4e4 </style>
最后在我们的app.vue里面引用tabbar组件,监听子类tabbaritem的点击方法,来控制当前哪个item的选中颜色文字的改变
app.vue代码
<template> <div id="app"> <router-view></router-view> <m-tabbar @tabbaractionevent='changeselectedvalue'> <m-tabbar-item id='home' :isrouter="ishome"> ![](./assets/tabbar-home-normal@2x.png) ![](./assets/tabbar-home-selected@2x.png) 首页 </m-tabbar-item> <m-tabbar-item id='position' :isrouter="isposition"> ![](./assets/tabbar-position-normal@2x.png) ![](./assets/tabbar-position-selected@2x.png) 职位 </m-tabbar-item> <m-tabbar-item id='message' :isrouter="ismessage"> ![](./assets/tabbar-message-normal@2x.png) ![](./assets/tabbar-message-selected@2x.png) 消息 </m-tabbar-item> <m-tabbar-item id='me' :isrouter="isme"> ![](./assets/tabbar-me-normal@2x.png) ![](./assets/tabbar-me-selected@2x.png) 我 </m-tabbar-item> </m-tabbar> </div> </template> <script> import mtabbar from 'common/tab/tab.vue' import mtabbaritem from 'common/tab/tabbar-item' export default { name: 'app', components: { mtabbar, mtabbaritem }, data () { return { ishome: true, isposition: false, ismessage: false, isme: false } }, methods: { changeselectedvalue: function (elvalue) { if (elvalue === 'home') { this.ishome = true } else { this.ishome = false } if (elvalue === 'position') { this.isposition = true } else { this.isposition = false } if (elvalue === 'message') { this.ismessage = true } else { this.ismessage = false } if (elvalue === 'me') { this.isme = true } else { this.isme = false } } } } </script>
自此tababr已经封装完毕了,其中用到的tabbaritem图片,大家可以自己替换掉,下一篇,会提到导航部分的封装
最终运行效果如下
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。