相关文章推荐
仗义的面包  ·  python ...·  1 年前    · 
完美的红金鱼  ·  从Map中 ...·  1 年前    · 
骑白马的皮带  ·  React Typescipt ...·  1 年前    · 

vue window.location.href无效

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

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

或者使用 Vue 路由:

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