mirror of
https://github.com/Dannecron/ich-lerne-deutsch.git
synced 2025-12-25 21:02:35 +03:00
24 lines
364 B
Vue
24 lines
364 B
Vue
<template>
|
|
<v-app>
|
|
<app-header></app-header>
|
|
|
|
<v-content>
|
|
<router-view />
|
|
</v-content>
|
|
|
|
<app-footer></app-footer>
|
|
</v-app>
|
|
</template>
|
|
|
|
<script>
|
|
import AppHeader from '@/components/AppHeader';
|
|
import AppFooter from '@/components/AppFooter';
|
|
|
|
export default {
|
|
components: {
|
|
AppHeader,
|
|
AppFooter,
|
|
}
|
|
};
|
|
</script>
|