13 lines
No EOL
459 B
Vue
13 lines
No EOL
459 B
Vue
<template>
|
|
<router-view v-slot="{ Component }">
|
|
<transition :duration="{ enter: 200, leave: 200 }" name="route-fade" mode="out-in">
|
|
<!-- The above durations should be kept in sync with the global css class "fade-on-route-transition" -->
|
|
<component :is="Component" />
|
|
</transition>
|
|
</router-view>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import "./node_modules/bootstrap/scss/bootstrap";
|
|
@import "@/styles/common-animations.scss";
|
|
</style> |