How to use router-link to realize Jump Page in vue
This article mainly introduces how to use router-link to achieve jump pages in vue, which has a certain reference value, interested friends can refer to, I hope you can learn a lot after reading this article, the following let the editor take you to understand it.
Router-link jumps 1. It is fine without the parameter / / name,path. It is recommended to use name / / Note: if the link in router-link starts with'/', it starts with the root route; if it does not take'/', it starts with the current route. two。 Pass parameter / / params with params parameter (similar to post) / / routing configuration path: "/ home/:id" or path: "/ home:id" / / do not configure path. The refresh page id will disappear the first time you can request it. If you configure path, the refresh page id will be retained. / / html fetch parameter $route.params.id script fetch parameter this.$route.params.id 3. Pass parameters with query parameter / / query (similar to parameters will be shown later on get,url) / / routing can not be configured / / html fetch parameter $route.query.id script fetch parameter this.$route.query.id Thank you for reading this article carefully. I hope the article "how to use router-link in vue to achieve Jump Page" shared by the editor will be helpful to everyone. At the same time, I also hope you can support it and pay attention to the industry information channel. More related knowledge is waiting for you to learn!