vue-router使用以及vue下的nextTick钩子函数
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了vue-router使用以及vue下的nextTick钩子函数相关的知识,希望对你有一定的参考价值。
先把router文件引入过来
import router from ‘../../router‘
router.push({name: ‘merchantStationDetail‘, params: {"authorCheckList":authorCheckList,"stationName":stationName,"groupId":groupId}});
填入router配置的路径名称,和相关参数
获取参数
this.authorCheckList=this.$route.params.authorCheckList;
nextTick
应用场景
当一些数据更新后,需要回调一些校验函数
这个时候需要nextTick钩子函数,获取到数据更新后的状态
以上是关于vue-router使用以及vue下的nextTick钩子函数的主要内容,如果未能解决你的问题,请参考以下文章