npm install @forzoom/vue-router-scroll
// index.js
import router from './router/index.js';
import VueRouterScroll from 'vue-router-scroll';
Vue.use(VueRouterScroll, router);
// router/index.js
[
{
path: '/path/to/example',
meta: {
scrollBehavior: 'top', // top | restore
},
name: 'test',
component: Component,
},
],
进入页面时,控制显示的位置。允许的值包括top
或者restore
value | description |
---|---|
top | 每次都回到顶部 |
restore | 回到上一次离开的位置 |
scrollBehavior = 'restore'时生效。进入页面时,如果没有可以用于展示的位置,将会使用该位置展示页面。 例如设置为0的情况下,进入页面将默认显示页面顶部。