Home  >  Article  >  Web Front-end  >  Three ways to implement route jump in vue

Three ways to implement route jump in vue

王林
王林Original
2020-05-12 09:48:3512332browse

Three ways to implement route jump in vue

1. router-link

Three ways to implement route jump in vue

Note: The jump link must be introduced in the routing.

2. this.$router.push({ path:'/user'})

Commonly used for routing parameters, the usage is the same as the third one

Difference:

(1) Query introduction method

params can only use name to introduce routes

And query must use path to introduce

(2) The query delivery method

is similar to get parameters in our ajax. The parameters are displayed in the browser address bar.

params is similar to post and is not displayed in the browser address bar. Parameters

Passed file

Three ways to implement route jump in vue

Received file

Three ways to implement route jump in vue

3, this. $router.replace(path:'/')

The above is the detailed content of Three ways to implement route jump in vue. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn