更新记录
1.0.0(2021-03-23)
下载此版本
没有更新日志
平台兼容性
App |
快应用 |
微信小程序 |
支付宝小程序 |
百度小程序 |
字节小程序 |
QQ小程序 |
HBuilderX 3.1.0 |
× |
√ |
× |
× |
× |
× |
钉钉小程序 |
快手小程序 |
飞书小程序 |
京东小程序 |
× |
× |
× |
× |
H5-Safari |
Android Browser |
微信浏览器(Android) |
QQ浏览器(Android) |
Chrome |
IE |
Edge |
Firefox |
PC-Safari |
√ |
√ |
√ |
√ |
× |
× |
× |
× |
× |
footer
使用方法
main.js 全局注册
import Footer from 'components/footer/footer.vue'
Vue.component('Footer', Footer)
index 首页
<Footer :barList="barList"></Footer>
export default {
data() {
return {
barList:[{
"pagePath": "pages/index/index",
"iconPath": "static/shouy1@2x.png",
"selectedIconPath": "static/shouy2@2x.png",
"text": "首页"
},
{
"pagePath": "pages/user/user",
"iconPath": "static/wd1@2x.png",
"selectedIconPath": "static/wd2@2x.png",
"text": "我的"
}]
};
}
}