Compare commits
3 Commits
0615fb0859
...
7d6c8d0f10
Author | SHA1 | Date | |
---|---|---|---|
7d6c8d0f10 | |||
34d5d33f4a | |||
43a6b11168 |
@ -15,12 +15,22 @@ 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,6 +1,16 @@
|
|||||||
<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>
|
||||||
|
|
||||||
@ -8,7 +18,6 @@
|
|||||||
@media (min-width: 1024px) {
|
@media (min-width: 1024px) {
|
||||||
.about {
|
.about {
|
||||||
min-height: 100vh;
|
min-height: 100vh;
|
||||||
display: flex;
|
|
||||||
align-items: center;
|
align-items: center;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
0
src/views/GameControl.vue
Normal file
0
src/views/GameControl.vue
Normal file
0
src/views/GameDisplay.vue
Normal file
0
src/views/GameDisplay.vue
Normal file
Loading…
Reference in New Issue
Block a user