🚀 Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more
Socket
Book a DemoInstallSign in
Socket

vue-router-backward

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

vue-router-backward

add backward function to vue-router,the function is difference from browser history

1.1.2
latest
Source
npm
Version published
Weekly downloads
0
-100%
Maintainers
1
Weekly downloads
 
Created
Source

vue-router-backward

add backward function to vue-router,the function is difference from browser history

difference

  It will record the first router to the current router.And a route can only be recorded once. For example:

browser history:
A > B > C > B > D
the 'backward' module will record:
1: A
2: A > B
3: A > B > C
4: A > B
5: A > B > D

  Finally, when you use 'backward' back from page B, you will arrive at page A.

install

  npm install vue-router-backward

  or

  yarn install vue-router-backward

use

  First, add backward function to router.

import Vue from 'vue'
import Router from 'vue-router'
import backward from 'vue-router-backward'

Vue.use(Router)

let router = new Router({
  routes: [
    ...
  ]
})

export default backward(router)

  Second, trigger the backward function

export default {
  name: 'xxx',
  methods: {
    goBefore () {
      this.$router.backward()
    }
  }
}

  You can judge whether it's back or not in the previous page

  if (this.$route.params.isBack) {
    this.transitionEffect = ''
    if(this.$route.params.backFrom === 'AMap'){ // When you use 'backward', it brings in the name of the route
      this.AMapComplete = true
    }
  }else {
    this.transitionEffect = 'slideInRight'
  }

Keywords

vue-router

FAQs

Package last updated on 01 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts