vue keepalive緩存問題
當同時設置include和exclude時,且有交集時,exclude優先級更高。include、exclude中的名字數組為頁面組件中defineOptions({name:''}) name設置的值
<router-view v-slot="{ Component }">
<transition-group>
<keep-alive :include="include" :exclude="exclude">
<component :is="Component" />
</keep-alive>
</transition-group>
</router-view>

浙公網安備 33010602011771號