mirror of
https://github.com/IT4Change/gradido.git
synced 2026-01-16 01:44:31 +00:00
18 lines
343 B
Vue
Executable File
18 lines
343 B
Vue
Executable File
<template>
|
|
<div class="content">
|
|
<fade-transition :duration="200" mode="out-in">
|
|
<!-- your content here -->
|
|
<router-view></router-view>
|
|
</fade-transition>
|
|
</div>
|
|
</template>
|
|
<script>
|
|
import { FadeTransition } from 'vue2-transitions'
|
|
export default {
|
|
components: {
|
|
FadeTransition,
|
|
},
|
|
}
|
|
</script>
|
|
<style></style>
|