美文网首页vueVue3.0+TS
Vue3+TS Day23 - vue-router、路由动画、

Vue3+TS Day23 - vue-router、路由动画、

作者: 望穿秋水小作坊 | 来源:发表于2021-12-16 17:21 被阅读0次

1、如何给路由切换添加动画?

image.png

2、如何给路由切换添加缓存?

  • 使用 keep-alive 包裹
    <router-view v-slot="props">
      <transition name="why" mode="out-in">
        <keep-alive>
          <component :is="props.Component"></component>
        </keep-alive>
      </transition>
    </router-view>

3、为什么要【动态的添加路由】?

  • 有时候需要根据用户角色,来配置路由的内容。
image.png image.png

4、在路由切换过程中希望做更多事情,怎么办?

  • 使用 【路由守卫】
image.png image.png image.png

相关文章

网友评论

    本文标题:Vue3+TS Day23 - vue-router、路由动画、

    本文链接:https://www.haomeiwen.com/subject/anpvfrtx.html