Socket
Socket
Sign inDemoInstall

vue-router-backward

Package Overview
Dependencies
0
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

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


Version published
Weekly downloads
5
Maintainers
1
Install size
4.61 kB
Created
Weekly downloads
 

Readme

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

FAQs

Last updated on 01 Mar 2019

Did you know?

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

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc