#54 transition between pages added

pull/1/head
Thomas Ballmann 3 years ago
parent f8af7762a6
commit 2c11c4e554

@ -166,7 +166,9 @@
min-height="70vh"
rounded="lg"
>
<router-view class="pa-5" />
<transition-page>
<router-view class="pa-5" />
</transition-page>
</v-sheet>
</v-col>
</v-main>
@ -176,9 +178,10 @@
<script>
import { mapState, mapGetters } from 'vuex'
import Notifications from '@/components/Notifications'
import TransitionPage from '@/components/TransitionPage'
export default {
components: { Notifications },
components: { TransitionPage, Notifications },
data: () => ({
drawer: true,
pages: [

@ -1,12 +1,16 @@
<template>
<v-main>
<router-view />
<transition-page>
<router-view />
</transition-page>
</v-main>
</template>
<script>
import TransitionPage from '@/components/TransitionPage'
export default {
name: 'Setup',
components: { TransitionPage },
}
</script>

Loading…
Cancel
Save