infojune.old/src/App.vue

43 lines
793 B
Vue
Executable File

<template>
<div id="app">
<header>
<p>Le site Infojune est encore en beta, mais il s'améliorera avec le temps </p>
<a href="/#/cf"> PARTICIPEZ AU CROWDFOUNDING DU SITE INFOJUNE.FR</a>
</header>
<router-view></router-view>
<footer> <img width="80px" src="./assets/juneland.svg" alt="logo juneland">Crée et hébergé par <a href="https://lelibreauquotidien.fr">llaq</a> - <a href="https://git.p2p.legal/llaq/infojune">Disponible sous agplV3</a></footer>
</div>
</template>
<script>
export default {
name: 'app',
components: {
},
data: function(){
return{
}
}
}
</script>
<style>
footer{
flex-grow:1;
}
#app {
display:flex;
flex-direction: column;
min-height: 100vh;
}
.col{
display: flex;
flex-direction: row;
}
footer{
}
</style>