Compare commits
No commits in common. "7d6c8d0f10bdaba52935a95cf409fed506534835" and "0615fb0859231ddd15021bc610f51bfcc447a9cd" have entirely different histories.
7d6c8d0f10
...
0615fb0859
@ -15,22 +15,12 @@ const router = createRouter({
|
|||||||
// route level code-splitting
|
// route level code-splitting
|
||||||
// this generates a separate chunk (About.[hash].js) for this route
|
// this generates a separate chunk (About.[hash].js) for this route
|
||||||
// which is lazy-loaded when the route is visited.
|
// which is lazy-loaded when the route is visited.
|
||||||
component: () => import('@/views/AboutView.vue')
|
component: () => import('../views/AboutView.vue')
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/game/control',
|
|
||||||
name: 'Game Control (Présentateur)',
|
|
||||||
component: () => import('@/views/GameControl.vue')
|
|
||||||
},
|
|
||||||
{
|
|
||||||
path: '/game/display',
|
|
||||||
name: 'Game Display (Projection)',
|
|
||||||
component: () => import('@/views/GameDisplay.vue')
|
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
path: '/mqtt-debugger',
|
path: '/mqtt-debugger',
|
||||||
name: 'Debugger MQTT',
|
name: 'Debugger MQTT',
|
||||||
component: () => import('@/views/MQTTDebugView.vue')
|
component: () => import('../views/MQTTDebugView.vue')
|
||||||
}
|
}
|
||||||
]
|
]
|
||||||
})
|
})
|
||||||
|
@ -1,16 +1,6 @@
|
|||||||
<template>
|
<template>
|
||||||
<div class="about">
|
<div class="about">
|
||||||
<h1>This is an about page</h1>
|
<h1>This is an about page</h1>
|
||||||
<hr/>
|
|
||||||
<p>
|
|
||||||
Exemple d'une page
|
|
||||||
</p><p>
|
|
||||||
Ou il y a un scroll
|
|
||||||
</p><p>
|
|
||||||
Pour mettre en valeur leu footer fixe en bas de page
|
|
||||||
</p><p>
|
|
||||||
Cette page n'a aucun interet et pourra etre supprimée
|
|
||||||
</p>
|
|
||||||
</div>
|
</div>
|
||||||
</template>
|
</template>
|
||||||
|
|
||||||
@ -18,6 +8,7 @@
|
|||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
.about {
|
.about {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
|
display: flex;
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user