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

268
Views
Sin nombre de ruta en VueJS 3 + VueRouter 4

Estoy usando VueJS 3 y Vue Router 4. Quiero obtener el nombre de la ruta actual usando {{$route.name}} ; esto funciona hasta ahora. Pero no devuelve ningún nombre de ruta, si estoy accediendo a una ruta, en este ejemplo estoy tratando de acceder a /planes/1, no devuelve ningún valor. aquí está mi matriz de rutas del enrutador:

 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 } ]

¿Qué estoy haciendo mal?

¡Gracias por cada ayuda!

over 4 years ago · Santiago Trujillo
1 answers
Answer question

0

Vue Router 4.x proporciona useRoute() para eso:

 import { useRoute } from 'vue-router' export default { setup() { const route = useRoute() onMounted(() => { const id = route.params.id }) } }

MANIFESTACIÓN

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!