vue keep-alive prop exclude使用小坑:使用逗号分隔字符串时不能加空格

    <!-- 正确的写法 -->    
    <keep-alive exclude="Profile,About">  
      <router-view></router-view>
    </keep-alive>

    <!-- 错误的写法 逗号中间有空格-->    
    <keep-alive exclude="Profile, About">  
    ...

正确写法页面效果:

使用keep-alive缓存组件时,exclude使用逗号分隔字符串时,两个组件名称之间的逗号有空格时,不缓存,不起作用。

错误写法页面效果:

猜你喜欢

转载自blog.csdn.net/u010234868/article/details/121654927