Correct answer Using // router path: "/user/:uid" <template> <div>user</div> <p>uid: {{ uid }}</p> </template> <script lang="ts"> import { defineComponent } from "vue"; import { useRouter } from "vue-router"; export default defineComponent({ name: "User", setup() { const router = useRouter(); const uid = router.currentRoute.value.params.uid; return { // Returned data uid, }; }, }); </script> Explain Use This concludes this article about how to get the current routing address in vue3. I hope it will be helpful for everyone’s study, and I also hope that everyone will support 123WORDPRESS.COM. You may also be interested in:
|
<<: 10 key differences between HTML5 and HTML4
>>: Clever use of webkit-box-reflect to achieve various dynamic effects (summary)
In practice, we often encounter a problem: how to...
Table of contents 1. Overview 2. Use Keepalived t...
Preface To help ensure that your web pages have a ...
1. Basic Spring-boot Quick Start 1.1 Quick start ...
Because some dependencies of opencv could not be ...
Preface MySQL slow query log is a function that w...
The transaction log records the operations on the...
1. Docker installation and settings #Install Cent...
Write configuration files in server.xml and conte...
Solution to MySQLSyntaxErrorException when connec...
1. Introduction Containers use a sandbox mechanis...
1. Add the viewport tag to the HTML header. At th...
Import: Due to project requirements, we will enca...
This example uses jQuery to implement a mouse dra...
Vertical Split Vertical splitting refers to the s...