<!-- 正确的写法 -->
<keep-alive exclude="Profile,About">
<router-view></router-view>
</keep-alive>
<!-- 错误的写法 逗号中间有空格-->
<keep-alive exclude="Profile, About">
...
正确写法页面效果:
使用keep-alive缓存组件时,exclude使用逗号分隔字符串时,两个组件名称之间的逗号有空格时,不缓存,不起作用。
错误写法页面效果: