1. 程式人生 > >vue-router使用以及vue下的nextTick鉤子函數

vue-router使用以及vue下的nextTick鉤子函數

應用場景 更新 r文件 tail this 名稱 數據 outer 參數

先把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鉤子函數