Initial commit

This commit is contained in:
2023-04-30 19:10:59 +02:00
commit 9ce11fe589
22 changed files with 562 additions and 0 deletions

29
src/components/App.vue Normal file
View File

@@ -0,0 +1,29 @@
<template lang="pug">
Header Vue Example App
Navigation
Content.content
Footer © Dietrich
</template>
<script lang="ts">
import Header from './Header.vue'
import Navigation from './Navigation.vue'
import Content from './Content.vue'
import Footer from './Footer.vue'
export default {
components: { Header, Navigation, Content, Footer },
}
</script>
<style lang="sass">
body > #app
height: 100vh
display: flex
flex-direction: column
align-items: stretch
> .content
flex-grow: 1
</style>