vue-navigation
require vue2.x
and vue-router2.x
.
中文文档
vue-navigation default behavior is similar to native mobile app (A、B、C are pages):
- A forward to B, then forward to C;
- C back to B, B will recover from cache;
- B forward to C again, C will rebuild, not recover from cache;
- C forward to A, A will build, now the route contains two A instance.
!important: vue-navigation adds a key to the url to distinguish the route. The default name of the key is VNK, which can be modified.
DEMO
DEMOCODE
Installing
npm i -S vue-navigation
or
yarn add vue-navigation
Usage
Basic Usage
main.jsimport Vue from 'vue'
import router from './router' // vue-router instance
import Navigation from 'vue-navigation'
Vue.use(Navigation, {router})
// bootstrap your app...
App.vue<template>
<navigation>
<router-view></router-view>
</navigation>
</template>
Use with vuex2
main.jsimport Vue from 'vue'
import router from './router' // vue-router instance
import store from './store' // vuex store instance
import Navigation from 'vue-navigation'
Vue.use(Navigation, {router, store})
// bootstrap your app...
After passing in
store
, vue-navigation
will register a module in store
(default module name is navigation
), and commit navigation/FORWARD
or navigation/BACK
or navigation/REFRESH
when the page jumps.Options
Onlyrouter
is required.Vue.use(Navigation, {router, store, moduleName: 'navigation', keyName: 'VNK'})
Events
functions:on
| once
| off
event types:
forward
| back
| replace
| refresh
| reset
parameter(
to
| from
) properties:name
route
this.$navigation.on('forward', (to, from) => {})
this.$navigation.once('back', (to, from) => {})
this.$navigation.on('replace', (to, from) => {})
this.$navigation.off('refresh', (to, from) => {})
this.$navigation.on('reset', () => {})
Methods
UseVue.navigation
in global environment or use this.$navigation
in vue instance.getRoutes()
get the routing recordscleanRoutes()
clean the routing records