Home > Web Front-end > JS Tutorial > body text

How to get this.$router.push parameter in Vue

亚连
Release: 2018-06-04 10:48:55
Original
2546 people have browsed it

Below I will share with you an article on how to obtain this.$router.push parameter in Vue. It has a good reference value and I hope it will be helpful to everyone.

Method of passing parameters:

1.Params

Since dynamic routing also passes params, path cannot be used with params in this.$router.push() method, otherwise params will be invalid. You need to use name to specify the page.

And access through the name attribute of routing configuration

Define parameters in the routing configuration file:

Pass Name gets the page and passes params:

Get the parameters on the target page through this.$route.params:

2.Query

The page passes parameters through path and query. In this example, row is a row of table data

Get the parameters through this.$route.query on the target page:

this.$route.query.row.xxx
Copy after login

The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.

Related articles:

How to implement the parent component to pass multiple data to the child component in vue

How to solve the problem in vue The problem of dynamically modifying the url address of the jqgrid component

How to use Native in React to implement custom pull-down refresh to pull-up loaded list

The above is the detailed content of How to get this.$router.push parameter in Vue. For more information, please follow other related articles on the PHP Chinese website!

Related labels:
source:php.cn
Statement of this Website
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
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
About us Disclaimer Sitemap
php.cn:Public welfare online PHP training,Help PHP learners grow quickly!