Vue.js 这个参数包括在哪里?

Vue.js 这个参数包括在哪里?,vue.js,html-framework-7,Vue.js,Html Framework 7,我使用了Framework7+Vue.js,其中包括以下参数: showBarsOnPageScrollEnd:false 我包括在应用程序初始化。但不要工作此框架7文档显示了一个示例,说明如何包含不特定于Vue的导航栏参数: // if you use it on navbars: var app = new Framework7({ navbar: { hideOnPageScroll: true, iosCenterTitle: false, // added

我使用了Framework7+Vue.js,其中包括以下参数:

showBarsOnPageScrollEnd:false


我包括在应用程序初始化。但不要工作此

框架7文档显示了一个示例,说明如何包含不特定于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,
  },
});
指向文档的链接:

请注意,您使用的showBarsOnPageScrollEnd属性不在文档中-可能已弃用