需求是根据路由变化来改变面包屑显示
项目中采用的办法是只要路由改变,就重新获取面包屑的路径,然后渲染
watch: { $route() { this.getRoute() } } 或者 watch: { '$route'(to, from) { console.log(to,from) } }