我使用了Framework7 + Vue.js,其中包含以下参数:
showBarsOnPageScrollEnd: false
我包含在应用初始化中。但这不行
答案 0 :(得分:0)
Framework7文档显示了有关如何包含Navbar参数(非Vue特定)的示例:
// if you use it on navbars:
var app = new Framework7({
navbar: {
hideOnPageScroll: true,
iosCenterTitle: false,
// added by me, not in the documentation
showOnPageScrollEnd: false,
},
});
// if you use it on toolbars:
var app = new Framework7({
toolbar: {
hideOnPageScroll: true,
// added by me, not in the documentation
showOnPageScrollEnd: false,
},
});
文档链接:https://framework7.io/docs/navbar.html
请注意,您使用的 showBarsOnPageScrollEnd 属性不在文档中-可能已弃用。