如何清除nativescript-vue手动路由上的导航历史记录?

时间:2019-01-04 20:24:25

标签: javascript vue.js nativescript

我正面临navigation calls不断堆叠的情况,如下图所示。

devtools showing navigation calls

这是一个特殊的问题,因为当我调用注销功能时,它只是堆叠了另一个导航条目,因此用户可以使用“后退”按钮查看以前的屏幕。

是否可以清除导航条目的历史记录?

1 个答案:

答案 0 :(得分:3)

clearHistory设置为true

// Upon logout, navigate to Login / whichever component you like with `clearHistory` flag
this.$navigateTo(Login, { clearHistory: true });