I want to use route variable for breadcrumb title. For example:
{
 path:'sample/:title',
 data:{
 breadcrumb:[
   {title:'sample',link:'sample'},
   {title:using :title variable here}
   ]
 }
}
Is there a way to use variable immediately after define?