1
0
Fork 0
infojune/src/App.vue

40 lines
625 B
Vue
Raw Normal View History

2020-05-24 19:37:39 +02:00
2020-02-09 19:02:08 +01:00
<template>
<div id="app">
<router-view></router-view>
2020-05-24 19:37:39 +02:00
<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/g1land">Disponible sous agplV3</a></footer>
2020-02-09 19:02:08 +01:00
</div>
</template>
<script>
export default {
name: 'app',
components: {
},
data: function(){
return{
}
2020-02-09 19:02:08 +01:00
}
}
</script>
<style>
2020-05-24 19:37:39 +02:00
footer{
flex-grow:1;
position:absolute;
bottom:0;
}
2020-02-09 19:02:08 +01:00
#app {
display:flex;
flex-direction: column;
}
.col{
display: flex;
flex-direction: row;
2020-02-09 19:02:08 +01:00
}
2020-05-24 19:37:39 +02:00
footer{
2020-02-09 19:02:08 +01:00
}
</style>