Skip to content

Commit

Permalink
fix: mejora router-view y ux
Browse files Browse the repository at this point in the history
  • Loading branch information
raul authored and raul committed May 14, 2019
1 parent d4de3ea commit c36a4e5
Showing 1 changed file with 4 additions and 6 deletions.
10 changes: 4 additions & 6 deletions src/App.vue
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
<div class="App-bg"></div>
<v-header v-if="$route.name !== 'splash'"/>
<transition name="fade">
<router-view/>
<router-view />
</transition>
</div>
</div>
Expand Down Expand Up @@ -112,12 +112,10 @@ h3 {
/*fade*/
.fade-enter-active,
.fade-leave-active {
transition: opacity 0.4s;
.fade-enter-active, .fade-leave-active {
transition: opacity .4s;
}
.fade-enter, .fade-leave-to /* .fade-leave-active in <2.1.8 */ {
.fade-enter, .fade-leave-to /* .fade-leave-active below version 2.1.8 */ {
opacity: 0;
}
</style>

0 comments on commit c36a4e5

Please sign in to comment.