vue直接在地址栏输入路由地址 钩子函数无法拦截


地址栏输入的地址 无法进入这个钩子函数 大佬们犹豫过类似问题吗

history模式吗?

1:将router放到el之前试试

new Vue({
  router,
  el: '#app',
  store,
  template: '<App/>',
  components: {App}
})

2:采用mount挂载

new Vue({
  router,
  store,
  render: h => h(App)
}).$mount('#app')