aboutsummaryrefslogtreecommitdiffstats
path: root/src/layouts
diff options
context:
space:
mode:
authorArne Schauf <git@asw.io>2018-03-03 19:30:49 +0100
committerArne Schauf <git@asw.io>2018-03-03 19:30:49 +0100
commitc018fd90ee1c3f307fa45c337375df5d9e659735 (patch)
treea34b7acda8ce7300f78d3a6d4a830e83892f617e /src/layouts
parentf74540dcdc9812f4530a73b54f5c808b39d53a9d (diff)
downloadparry-ui-c018fd90ee1c3f307fa45c337375df5d9e659735.tar.gz
parry-ui-c018fd90ee1c3f307fa45c337375df5d9e659735.zip
animate route changes
Diffstat (limited to 'src/layouts')
-rw-r--r--src/layouts/default.vue7
1 files changed, 5 insertions, 2 deletions
diff --git a/src/layouts/default.vue b/src/layouts/default.vue
index ffe9138..36c2635 100644
--- a/src/layouts/default.vue
+++ b/src/layouts/default.vue
@@ -34,9 +34,12 @@
<q-page-container>
<q-page padding>
- <div class="flex row items-end reverse-wrap gutter">
+ <div class="flex row items-end reverse-wrap gutter-md">
<div class="col">
- <transition name="fadeIn">
+ <transition mode="out-in"
+ duration="200"
+ enter-active-class="animated fadeIn"
+ leave-active-class="animated fadeOut">
<router-view></router-view>
</transition>
</div>