Bootstrap

vue路由缓存list,导致页面不刷新问题。

再缓存页面监听路有变化,根据参数来手动刷新页面 

watch:{

$route(route) {

if(route.path == '/storeList' && route.query.storeLevel !== this.params.storeLevel) {

this.params.storeLevel = route.query.storeLevel

this.reload()

}

}

},

;