mirror of
https://github.com/Dannecron/ich-lerne-deutsch.git
synced 2025-12-25 21:02:35 +03:00
Initial commit. Add application skeleton
This commit is contained in:
23
src/App.vue
Normal file
23
src/App.vue
Normal file
@@ -0,0 +1,23 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user