javascript - vue路由動畫問題
大家讲道理
大家讲道理 2017-05-19 10:35:40
0
3
487
<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>,是不是無法實現路由切換的時候讓即將消失路由從左邊消失,即將進來的路由從右邊進來?

大家讲道理
大家讲道理

光阴似箭催人老,日月如移越少年。

全部回覆(3)
阿神

直接在組件中加transition

大家讲道理

你想做模擬APP的路由切換方式麼

我最近想做一個小專案,目前還是半成品,但是其中的transition部分已經實現了這個操作,你可以去看看是不是你想要的

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

滿天的星座

再設定mode為out–in

熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板