我正面临navigation calls不断堆叠的情况,如下图所示。
这是一个特殊的问题,因为当我调用注销功能时,它只是堆叠了另一个导航条目,因此用户可以使用“后退”按钮查看以前的屏幕。
是否可以清除导航条目的历史记录?
答案 0 :(得分:3)
将clearHistory
设置为true
// Upon logout, navigate to Login / whichever component you like with `clearHistory` flag
this.$navigateTo(Login, { clearHistory: true });