You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

30 lines
439 B
Vue

<template>
<b-container fluid>
<transition
name="fade"
mode="out-in">
<router-view></router-view>
</transition>
</b-container>
</template>
<script>
export default {
name: 'app',
}
</script>
<style>
.fade-enter-active,
.fade-leave-active {
transition-duration: 0.3s;
transition-property: opacity;
transition-timing-function: ease;
}
.fade-enter,
.fade-leave-active {
opacity: 0
}
</style>