摘要:
beforeRouteEnter 组件登录前被调用 beforeRouteUpdate 组件被反复调用时执行 beforeRouteLeave 离开该组件时被调用 参数:( to , from , next ) 差别: beforeRouteEnter 不能调用this 因为新的组件还未登陆,而其他 阅读全文
摘要:
router.beforeEach( ( to ,from ,next ) = { } ) to : route 即将进入的路由对象 from : route 当前正要离开的路由对象 next : Function 回调 常见操作: next(): 进行管道中的下一个钩子 next(false): 阅读全文
摘要:
.sync 和 update 子组件 this.$emit( 'update : 事件' , 数据 ) eg: 父组件 eg: 父组件不用再用方法接收子组件的传值,子组件便可以修改父组件所传数据的值 阅读全文
摘要:
Object.defineProperty( key , prop , val ) 结构: key : { prop:val } Js模拟双向数据绑定源码图 阅读全文