Vue routing relative path jumpToday I encountered multi-layer routing when writing something. A relative path is required when jumping between routes. Therefore, I checked the official website and found that the append attribute and router.resolve method were used, so I listed the specific usage methods. 1. Append attributeWhen the append attribute is set, the base path is added before the current (relative) path. Type: boolean Default value: false
If the current route is /eth, jump to the child /eth/block <router-link to="block" append> /eth =====> /eth/block </router-link> If the current route is /eth/login, jump to the same level /eth/block <router-link to="../block" append> /eth/login =====> /eth/block </router-link> If the current route is /eth/block, return to the previous level /eth <router-link to="../" append> /eth/block =====> /eth </router-link> 2.router.resolve methodrouter.resolve(location, current?, append?) Return value: route object
export default { mounted() { //Get the route object to be redirected let routeObj = this.$router.resolve({ path: '../' }, this.$route, "append" ); //Print and view the route object console.log(routeObj); //Route jump this.$router.push({ path: routeObj.route.path, query: { //Pass parameter id in this way: this.id } }); } } Vue router dynamic routing click jump path address repeated appendProblems encountered when practicing writing vue router dynamic routingWhen clicking multiple times, the address bar keeps adding duplicates. After checking the code, I found that the relative path in the page was missing a '/' at the beginning; adding it will display normally. as follows: The above is my personal experience. I hope it can give you a reference. I also hope that you will support 123WORDPRESS.COM. You may also be interested in:
|
<<: Detailed explanation of the principles and usage of MySQL stored procedures
>>: Steps to configure IIS10 under Win10 and support debugging ASP programs
Deleting a single table: DELETE FROM tableName WH...
MySQL 8.0 for Windows v8.0.11 official free versi...
In the previous article, we wrote about how to de...
MySQL is a very powerful relational database. How...
"What's wrong?" Unless you are accus...
Table of contents 1. Why Redux 2. Redux Data flow...
1. Resume nacos database Database name nacos_conf...
Table of contents 1. What are options? 2. What at...
Table of contents Create a global shared content ...
This article shares the specific code for JavaScr...
Table of contents 1. How the Bootstrap grid syste...
This method uses the drop-shadow filter in CSS3 t...
Table of contents Code cleaning "Frames"...
1|0 Background Due to project requirements, each ...
1. Refer to the official website to install docke...