mirror of
https://github.com/IT4Change/gradido.git
synced 2025-12-13 07:45:54 +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>
|