DigitalConsumer.ISS/src/App.vue
Kulbhushan Kaushik 63c554be16 commit
2022-09-16 10:47:58 -04:00

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>