Hey everyone, I've been encountering some issues with extracting params from my route in Nuxt 3.
The format of my dynamic route is exam_[id]_[applicant_id].vue and once loaded, the URL appears like this: http://localhost:3000/e-recruitment/exam_cl96q0u040000v1ocg2ffryio_3. The two dynamic parameters are cl96q0u040000v1ocg2ffryio and 3. When I log the params object, I see this screenshot. What could possibly be causing this issue?
onMounted(async ()=>{
console.log(route.params.applicant_id)
console.log(route.params.id)
})