1
0
Fork 0
infojune/src/App.vue

34 lines
402 B
Vue
Raw Normal View History

2020-02-09 19:02:08 +01:00
<template>
<div id="app">
<p>g1land</p>
<p>Donner en g1</p>
<router-view></router-view>
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>
#app {
display:flex;
flex-direction: column;
}
.col{
display: flex;
flex-direction: row;
2020-02-09 19:02:08 +01:00
}
.part:hover{
background-color:yellow;
}
</style>