Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
P
projet-cdaw
Project
Project
Details
Activity
Releases
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
1
Issues
1
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Quentin Vrel
projet-cdaw
Commits
e40dde20
Commit
e40dde20
authored
Dec 01, 2020
by
quentin.vrel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Renaming Home to Lobby
parent
b9974523
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
8 additions
and
8 deletions
+8
-8
index.js
frontend/src/router/index.js
+3
-3
Lobby.vue
frontend/src/views/Lobby.vue
+3
-3
Login.vue
frontend/src/views/Login.vue
+1
-1
Register.vue
frontend/src/views/Register.vue
+1
-1
No files found.
frontend/src/router/index.js
View file @
e40dde20
...
...
@@ -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'
,
...
...
frontend/src/views/
Home
.vue
→
frontend/src/views/
Lobby
.vue
View file @
e40dde20
<
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
;
}
...
...
frontend/src/views/Login.vue
View file @
e40dde20
...
...
@@ -32,7 +32,7 @@ export default {
},
methods
:
{
onSubmit
:
function
(){
this
.
$router
.
push
(
'
Home
'
);
this
.
$router
.
push
(
'
Lobby
'
);
}
}
}
...
...
frontend/src/views/Register.vue
View file @
e40dde20
...
...
@@ -56,7 +56,7 @@ export default {
if
(
this
.
showBackError
)
{
return
;
}
this
.
$router
.
push
(
'
home
'
);
this
.
$router
.
push
(
'
Lobby
'
);
}
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment