0.1.7 • Published 6 years ago

@forzoom/vue-router-scroll v0.1.7

Weekly downloads
11
License
MIT
Repository
github
Last release
6 years ago

Installation

npm install @forzoom/vue-router-scroll

Usage

	// 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: 'restore', // top | restore
				scrollDefaultPosition: '100', // window.scrollY = 100 by default
			},
			name: 'test',
			component: Component,
		},
	],

Options

options

router

VueRouter

Vue router instance

checkParams

Boolean: true by default

whether check param as part of key or not

	e.g.

	var route = {
		path: '/a/b/c',
	}

	Vue.use(VueRouteScroll, {
		router,
		checkParams: false,
	});

checkQuery

Boolean: true by default

options in meta

scrollBehavior

进入页面时,控制显示的位置。允许的值包括top或者restore

valuedescription
top每次都回到顶部
restore回到上一次离开的位置

scrollDefaultPosition

scrollBehavior = 'restore'时生效。进入页面时,如果没有可以用于展示的位置,将会使用该位置展示页面。 例如设置为0的情况下,进入页面将默认显示页面顶部。

0.1.7

6 years ago

0.1.6

6 years ago

0.1.5

6 years ago

0.1.4

6 years ago

0.1.3

6 years ago

0.1.1

6 years ago

0.0.4

6 years ago

0.0.3

7 years ago

0.0.2

7 years ago

0.0.1

7 years ago