Can i use Routable with params?

when i use Routable as that,click tabLink switch interface, Instead of switching tabs normally, How can i resolve that.

{
path: ‘/tabs-routable/’,
component: TabsRoutable,
tabs: [{
path: ‘/:id’,
id: ‘tab1’,
component: MeetingTab,
},{
path: ‘/tab2/:id’,
id: ‘tab2’,
component: FormPage,
},{
path: ‘/tab3/:id’,
id: ‘tab3’,
component: Tab3,
}]
}

Didn’t get what is the issue? Can you explain more detailed?

I want the contents in the TAB to not have to go route every time when TAB is switched.