欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

vue hash模式下页面跳转用this.$router.push({ path: ‘/‘ })

程序员文章站 2022-03-29 09:14:02
...

hash模式下:mode: ‘hash’,

export default new Router({
  mode: 'hash',
  routes: [
    {
      path: '/',
      name: 'home',
      component: Home
    }
  ]
})

页面点击用window.location.href = "./"无效
正确:

clickBtn() {
      this.$router.push({ path: '/' })
      this.$router.push({ path: '/', query: { id: row.id } })  // 带参数
}
相关标签: vue.js hash