vue window.location.href无效

在 Vue 中使用 window.location.href 可能无效,因为 Vue 在更新视图后可能会阻止页面的跳转。为了解决这个问题,您可以使用 JavaScript 代码来执行跳转:

window.location.href = 'https://www.example.com'

或者使用 Vue 路由:

this.$router.push('/path')
              用户9678078019664