Add some cheap transition anymation.

このコミットが含まれているのは:
Roger Braun 2016-11-28 14:35:21 +01:00
コミット 6fad01339c
2個のファイルの変更10行の追加1行の削除

ファイルの表示

@ -263,3 +263,10 @@ attention {
nav {
z-index: 1000;
}
.fade-enter-active, .fade-leave-active {
transition: opacity .2s
}
.fade-enter, .fade-leave-active {
opacity: 0
}

ファイルの表示

@ -11,7 +11,9 @@
<nav-panel></nav-panel>
<notifications v-if="currentUser"></notifications>
</sidebar>
<router-view></router-view>
<transition name="fade">
<router-view></router-view>
</transition>
</div>
</div>
</template>