Business
Jobs
  • About Us
  • Solutions
    • Job Postings
      Post your job and receive qualified candidates in 48h.
    • Candidate Assessments
      500+ technical and psychological tests, plus anti-fraud.
    • Headhunting
      Tailor-made executive search from start to finish.
    • Payroll + EOR
      Payroll dispersal and EOR across 15+ LATAM countries.
  • Pricing
  • Jobs

0

267
Views
No Route name in VueJS 3 + VueRouter 4

I am using VueJS 3 and Vue Router 4. I want to get the name of the current route using {{$route.name}} - this works so far. But it doesn't return any Route Name, if I'm accessing a route - in this Example I am trying to access /plans/1 - it doesn't return any value. here is my routes-array from the router:

const routes = [
    {
        path: '/plans',
        name: 'Learning Plans',
        component: ListPlans
    },
    {
        path: '/plans/:id',
        name: "Leaning Plan: Learn",
        component: ViewPlan,
        props: true
    },
    {
        path: '/plans/:id/edit',
        name: "Edit Learningplan",
        component: EditPlan,
        props: true
    }
]

What am I doing wrong?

Thanks for every help!

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Vue Router 4.x provides useRoute() for that:

import { useRoute } from 'vue-router'

export default {
  setup() {
    const route = useRoute()

    onMounted(() => {
      const id = route.params.id
    })
  }
}

DEMO

over 4 years ago · Santiago Trujillo Report
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Sales
Legal
Terms and conditions Privacy policy
© 2026 PeakU Inc. All Rights Reserved.
Andres GPT
Show me some job opportunities
There's an error!