aboutsummaryrefslogtreecommitdiff
path: root/src/App.vue
diff options
context:
space:
mode:
authorRoger Braun <roger@rogerbraun.net>2016-11-28 14:35:21 +0100
committerRoger Braun <roger@rogerbraun.net>2016-11-28 14:35:21 +0100
commit6fad01339cb3f8514429d03869a9c8ff2a343b02 (patch)
treeae285785bad1d8600367aca3085a6ec9782ad71c /src/App.vue
parentc9604eec9dd5d507a84d7e3de0365792e05a1d18 (diff)
Add some cheap transition anymation.
Diffstat (limited to 'src/App.vue')
-rw-r--r--src/App.vue4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/App.vue b/src/App.vue
index dd05c569..e46419e0 100644
--- a/src/App.vue
+++ b/src/App.vue
@@ -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>