
Security News
Open Source Maintainers Feeling the Weight of the EU’s Cyber Resilience Act
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
vue-router-backward
Advanced tools
add backward function to vue-router,the function is difference from browser history
add backward function to vue-router,the function is difference from browser history
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.
npm install vue-router-backward
or
yarn install vue-router-backward
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'
}
FAQs
add backward function to vue-router,the function is difference from browser history
The npm package vue-router-backward receives a total of 0 weekly downloads. As such, vue-router-backward popularity was classified as not popular.
We found that vue-router-backward demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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.
Security News
The EU Cyber Resilience Act is prompting compliance requests that open source maintainers may not be obligated or equipped to handle.
Security News
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.