赞
踩
文件夹下创建小程序的四个文件js/wxml/wxss/json
里面的内容和小程序官方文档写的一样
https://developers.weixin.qq.com/miniprogram/dev/framework/ability/custom-tabbar.html
就是这些内容
可以预览效果导入段落直接copy到你的项目里,注意修改js文件里的路径
注意pages.json文件的tabbar的custom一定是true
Vue.mixin({
methods:{
setTabBarIndex(index) {
if (typeof this.$mp.page.getTabBar === 'function' &&
this.$mp.page.getTabBar()) {
this.$mp.page.getTabBar().setData({
selected: index
})
}
}
}
})
index首页
about关于我们页面
Copyright © 2003-2013 www.wpsshop.cn 版权所有,并保留所有权利。