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

Renaming Home to Lobby

parent b9974523
...@@ -14,9 +14,9 @@ const routes = [ ...@@ -14,9 +14,9 @@ const routes = [
component: () => import(/* webpackChunkName: "about" */ '../views/About.vue') component: () => import(/* webpackChunkName: "about" */ '../views/About.vue')
}, },
{ {
path: '/home', path: '/lobby',
name: 'Home', name: 'Lobby',
component: () => import('../views/Home.vue') component: () => import('../views/Lobby.vue')
},{ },{
path: '/register', path: '/register',
name: 'Register', name: 'Register',
......
<template> <template>
<div class="home"> <div class="">
<user-ribbon username="Josie Péritel" pathToImage="avatar/criquette.jpg"/> <user-ribbon username="Josie Péritel" pathToImage="avatar/criquette.jpg"/>
</div> </div>
</template> </template>
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
import UserRibbon from '@/components/UserRibbon.vue' import UserRibbon from '@/components/UserRibbon.vue'
export default { export default {
name: 'Home', name: '',
components: { components: {
UserRibbon UserRibbon
} }
...@@ -17,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
</script> </script>
<style> <style>
.home{ .{
display: flex; display: flex;
flex-direction: column; flex-direction: column;
} }
......
...@@ -32,7 +32,7 @@ export default { ...@@ -32,7 +32,7 @@ export default {
}, },
methods: { methods: {
onSubmit: function(){ onSubmit: function(){
this.$router.push('Home'); this.$router.push('Lobby');
} }
} }
} }
......
...@@ -56,7 +56,7 @@ export default { ...@@ -56,7 +56,7 @@ export default {
if (this.showBackError) { if (this.showBackError) {
return; 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