Commit e40dde20 authored by quentin.vrel's avatar quentin.vrel

Renaming Home to Lobby

parent b9974523
......@@ -14,9 +14,9 @@ const routes = [
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
},
{
path: '/home',
name: 'Home',
component: () => import('../views/Home.vue')
path: '/lobby',
name: 'Lobby',
component: () => import('../views/Lobby.vue')
},{
path: '/register',
name: 'Register',
......
<template>
<div class="home">
<div class="">
<user-ribbon username="Josie Péritel" pathToImage="avatar/criquette.jpg"/>
</div>
</template>
......@@ -9,7 +9,7 @@
import UserRibbon from '@/components/UserRibbon.vue'
export default {
name: 'Home',
name: '',
components: {
UserRibbon
}
......@@ -17,7 +17,7 @@ export default {
</script>
<style>
.home{
.{
display: flex;
flex-direction: column;
}
......
......@@ -32,7 +32,7 @@ export default {
},
methods: {
onSubmit: function(){
this.$router.push('Home');
this.$router.push('Lobby');
}
}
}
......
......@@ -56,7 +56,7 @@ export default {
if (this.showBackError) {
return;
}
this.$router.push('home');
this.$router.push('Lobby');
}
}
}
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment