Commit 9e41b4c8 authored by quentin.vrel's avatar quentin.vrel

typos correction

parent e40dde20
<template> <template>
<div class=""> <div class="lobby">
<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: '', name: 'lobby',
components: { components: {
UserRibbon UserRibbon
} }
...@@ -17,7 +17,7 @@ export default { ...@@ -17,7 +17,7 @@ export default {
</script> </script>
<style> <style>
.{ .lobby{
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('Lobby'); 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('Lobby'); 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