16 lines
349 B
Vue
16 lines
349 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<router-link
|
|
:to="{ name: 'mentorCockpitOverview' }"
|
|
class="btn-text mb-4 inline-flex items-center pl-0"
|
|
>
|
|
<it-icon-arrow-left class="it-icon"></it-icon-arrow-left>
|
|
{{ $t("a.Zurück") }}
|
|
</router-link>
|
|
|
|
<div class="bg-white">
|
|
<router-view></router-view>
|
|
</div>
|
|
</template>
|