vue刷新跳转首页

一刷新就跳首页

main.js

const router = new VueRouter({
  history: false,
  hashbang: true,
  routes
})

router.js

https://img.mukewang.com/5c0cb8a6000147bb04590421.jpg

app.vue

  export default {    name: 'app',    components: {
    },    created: function () {      this.$router.push('/login')
    }
  }

不管在哪页刷新,就一直跳转login页,是否我设置初始页面的方式有问题?


智慧大石
浏览 3413回答 1
1回答

慕神8447489

仔细翻阅官方文档。。用redirect指向首页,而不是直接push。
打开App,查看更多内容
随时随地看视频慕课网APP

相关分类

JavaScript