美文网首页
Vue-router 学习笔记

Vue-router 学习笔记

作者: 花知晓mi | 来源:发表于2019-07-23 09:47 被阅读0次

路由钩子函数

 beforeRouteEnter(to, from, next){
    console.log(to, from, next)
    console.log(1)
    next();
  },
  beforeRouteUpdate(to, from, next){
    console.log(to, from, next)
    console.log(2)
    next();
  },
  beforeRouteLeave(to, from, next){
    console.log(to, from, next)
    console.log(3)
    next();
  },

相关文章

网友评论

      本文标题:Vue-router 学习笔记

      本文链接:https://www.haomeiwen.com/subject/kmwnlctx.html