這情況keep-alive好像不能用,雖然參數(shù)是有限的,就幾個,想過給他們分配不同路由,但頁面只有數(shù)據(jù)不一樣,這樣做好像不太合適;大神們有沒有其他插件或簡單的方法;---------------------------如果覺得說得不清除,看看下面大概的情景;index.vue點(diǎn)擊不同的 li 給 content路由傳不同參數(shù)<template>
????<ul>
??????<li>
???????<router-link?to="content/a"></router-link>
??????</li>
??????<li>
???????<router-link?to="content/b"></router-link>
??????</li>
????</ul>
????<router-view></router-view>
</template>content.vuecontent路由組件根據(jù)不同參數(shù)獲取數(shù)據(jù)<script>
????exprot?default{
????????data:{},
????????mounted:function(){
????????????axios.get(url,data)
????????}
????}
</script>要求像使用 keep-alive 一樣簡單的緩存頁面;
vue-router同個路由不同參數(shù)怎么緩存
面包果
2018-09-14 17:29:38