[Vue warn]: Error in v-on handler (Promise/async): "NavigationDuplicated: Navigating to current loca
场景:路由运用編程式导航,一直点击同一个按钮问题:[Vue warn]: Error in v-on handler (Promise/async): “NavigationDuplicated: Navigating to current location (”/commonSetting/accountMgr") is not allowed"红框为现在所处的路由地址。解决前语句:th...
·
场景:路由运用編程式导航,一直点击同一个按钮
问题:[Vue warn]: Error in v-on handler (Promise/async): “NavigationDuplicated: Navigating to current location (”/commonSetting/accountMgr") is not allowed"
红框为现在所处的路由地址。
解决前语句:this.$router.push({ path: ‘/commonSetting’ })
解决后语句:this.$router.push({ path: ‘/commonSetting’ },onComplete => {},
onAbort => {})
意思详见Vue Router官网:https://router.vuejs.org/zh/guide/essentials/navigation.html
更多推荐
已为社区贡献2条内容
所有评论(0)