如何使用Vue-Router导航防护?

时间:2019-01-31 23:54:14

标签: vue-router

我有this code,但是当我尝试导航到其他路线时,永远不会调用该事件。路线更改时如何触发事件。

1 个答案:

答案 0 :(得分:1)

这行得通...

watch: {
   '$route' (to, from) {
     console.log('route switched')
   }
}