npm install vue-keep-scroll-plugin支持vuejs(version >= 2.0)记住任意滚动元素的滚动位置




html
` + via NPM
`bash
$ npm install vue-keep-scroll-plugin --save # Or
$ yarn add vue-keep-scroll-plugin
``javascript
// main.js
import Vue from "vue";
import VueKeepScrollPlugin from "vue-keep-scroll-plugin";
Vue.use(VueKeepScrollPlugin);
`
#### Simple example
`html
Document
this is index page
go to list
{{ n }}
this is list page
go to index
{{ n }}
``