Im trying to update a legacy ionic app to v4 at the moment but cant seem to find a v4 equivalent to this navigation
(我目前正在尝试将旧版离子应用更新为v4,但似乎找不到与此导航等效的v4)
return this.app.getRootNav().setPages([
{page: Profile},
{page: SettingsPage, params: {id: userId}}
])
ask by Kravitz translate from so