Refresh routable tab only one tab

Hello.
How to update only one tab?

routes: [{
    path: '/',
    url: './',
    tabs: [{
        path: '/',
        id: 'tab-main',
        componentUrl: './main.html'
    }, {
        path: '/tab-second/',
        id: 'tab-second',
        componentUrl: './second.html'
    }, {
        path: '/tab-three/',
        id: 'tab-three',
        componentUrl: './three.html'
    }]
}]

I called mainView.router.navigate(’/tab-second/’,{reloadCurrent: true}); but other tabs are also updated. (unload tab)
unloadTabContent set to false

1 Like