搜索

首页  >  问答  >  正文

javascript - vue路由动画问题

<template>
    <transition :name="transitionName">
      <router-view></router-view>
    </transition>
</template>
const routes = [
  { path: '/home', component: home },
  { path: '/detail', component: detail },
  { path: '/order', component: order },
  { path: '/', component: home }
]
    watch: {
        '$route' (to, from) {
            const toDepth = to.path.split('/').length;
            const fromDepth = from.path.split('/').length;
            this.transitionName = toDepth < fromDepth ? 'slide-right' : 'slide-left'
        }
      }

我整个页面就一个<router-view></router-view>,是不是无法实现路由切换的时候让即将消失路由从左边消失,即将进来的路由从右边进来?

大家讲道理大家讲道理2768 天前505

全部回复(3)我来回复

  • 阿神

    阿神2017-05-19 10:37:40

    直接在组件中加transition

    回复
    0
  • 大家讲道理

    大家讲道理2017-05-19 10:37:40

    你是想做模拟APP的路由切换方式么

    我最近想做一个小项目,目前还是半成品,但是其中的transition部分已经实现了这个操作,你可以去看看是不是你想要的

    https://github.com/tgxpuisb/vue-open-use

    回复
    0
  • 滿天的星座

    滿天的星座2017-05-19 10:37:40

    再设置mode为out–in

    回复
    0
  • 取消回复