36 lines
586 B
Vue
36 lines
586 B
Vue
<template>
|
|
<div id="app">
|
|
<SWNewVersion />
|
|
<img class="logo" src="@/assets/logo.svg" alt="binôme" />
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<script lang="ts">
|
|
import { defineComponent } from 'vue'
|
|
import SWNewVersion from '@/components/SWNewVersion.vue'
|
|
|
|
export default defineComponent({
|
|
name: 'App',
|
|
components: {
|
|
SWNewVersion
|
|
}
|
|
})
|
|
</script>
|
|
|
|
<style lang="scss">
|
|
@import '@/styles/app';
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
justify-content: space-between;
|
|
align-items: center;
|
|
min-height: 100vh;
|
|
}
|
|
|
|
img.logo {
|
|
margin-top: 1rem;
|
|
}
|
|
</style>
|