17 lines
228 B
Vue
17 lines
228 B
Vue
<template>
|
|
<div id="app">
|
|
<h1>Bons programmeurs</h1>
|
|
<router-view />
|
|
</div>
|
|
</template>
|
|
|
|
<style lang="scss">
|
|
@import '@/styles/app';
|
|
|
|
#app {
|
|
display: flex;
|
|
flex-direction: column;
|
|
min-height: 100vh;
|
|
}
|
|
</style>
|