Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
F
FE
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container registry
Model registry
Operate
Environments
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Ajou-WSD-Team6
FE
Commits
90f67262
Commit
90f67262
authored
5 years ago
by
최지원
Browse files
Options
Downloads
Patches
Plain Diff
ICON Change(Drawer, Toolbar)
parent
fc8a774c
No related branches found
No related tags found
1 merge request
!13
ICON Change(Drawer, Toolbar)
Changes
2
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
src/components/core/Drawer.vue
+8
-7
8 additions, 7 deletions
src/components/core/Drawer.vue
src/components/core/Toolbar.vue
+2
-25
2 additions, 25 deletions
src/components/core/Toolbar.vue
with
10 additions
and
32 deletions
src/components/core/Drawer.vue
+
8
−
7
View file @
90f67262
...
...
@@ -30,7 +30,7 @@
<v-list-tile
v-if=
"$store.state.isUserInfoGetted===true"
active-class=
"success"
class=
"v-list-item v-list__tile--buy"
@
click=
"logOut"
to=
"/"
>
<v-list-tile-action>
<v-icon>
mdi-
package-up
</v-icon>
<v-icon>
mdi-
logout
</v-icon>
</v-list-tile-action>
<v-list-tile-title
class=
"font-weight-light"
>
Log Out
...
...
@@ -39,7 +39,7 @@
<v-list-tile
v-if=
"$store.state.isUserInfoGetted===false"
active-class=
"success"
class=
"v-list-item v-list__tile--buy"
to=
"/login"
>
<v-list-tile-action>
<v-icon>
mdi-
package-up
</v-icon>
<v-icon>
mdi-
login
</v-icon>
</v-list-tile-action>
<v-list-tile-title
class=
"font-weight-light"
>
Login
...
...
@@ -48,7 +48,7 @@
<v-list-tile
v-if=
"$store.state.isUserInfoGetted===false"
active-class=
"success"
class=
"v-list-item"
to=
"/signup"
>
<v-list-tile-action>
<v-icon>
mdi-
p
ac
kage-up
</v-icon>
<v-icon>
mdi-ac
count-plus
</v-icon>
</v-list-tile-action>
<v-list-tile-title
class=
"font-weight-light"
>
SingUp
...
...
@@ -63,6 +63,7 @@
<
script
>
// Utilities
import
{
mapMutations
,
mapState
}
from
'
vuex
'
import
{
mdiAlphaLBox
}
from
'
@mdi/js
'
;
export
default
{
props
:
{
...
...
@@ -77,22 +78,22 @@ export default {
links
:
[
{
to
:
'
/
'
,
icon
:
'
mdi-
view-dashboard
'
,
icon
:
'
mdi-
home
'
,
text
:
'
Home
'
},
{
to
:
'
/finderboard
'
,
icon
:
'
mdi-account
'
,
icon
:
'
F
'
,
text
:
'
Finder Board
'
},
{
to
:
'
/losterboard
'
,
icon
:
'
mdi-clipboard-outline
'
,
icon
:
'
L
'
,
text
:
'
Loster Board
'
},
{
to
:
'
/mypage
'
,
icon
:
'
mdi-
format-fo
nt
'
,
icon
:
'
mdi-
accou
nt
'
,
text
:
'
My Page
'
}
]
...
...
This diff is collapsed.
Click to expand it.
src/components/core/Toolbar.vue
+
2
−
25
View file @
90f67262
...
...
@@ -13,25 +13,9 @@
<v-toolbar-items>
<v-flex
align-center
layout
py-2
>
<router-link
v-ripple
class=
"toolbar-items"
to=
"/"
>
<v-icon
color=
"tertiary"
>
mdi-
view-dashboard
</v-icon>
<v-icon
color=
"tertiary"
>
mdi-
home
</v-icon>
</router-link>
<v-menu
bottom
left
content-class=
"dropdown-menu"
offset-y
transition=
"slide-y-transition"
>
<router-link
v-ripple
slot=
"activator"
class=
"toolbar-items"
to=
"/notifications"
>
<v-badge
color=
"error"
overlap
>
<template
slot=
"badge"
>
{{
notifications
.
length
}}
</
template
>
<v-icon
color=
"tertiary"
>
mdi-bell
</v-icon>
</v-badge>
</router-link>
<v-card>
<v-list
dense
>
<v-list-tile
v-for=
"notification in notifications"
:key=
"notification"
@
click=
"onClick"
>
<v-list-tile-title
v-text=
"notification"
/>
</v-list-tile>
</v-list>
</v-card>
</v-menu>
<router-link
v-ripple
class=
"toolbar-items"
to=
"/user-profile"
>
<v-icon
color=
"tertiary"
>
mdi-account
</v-icon>
</router-link>
...
...
@@ -48,13 +32,6 @@ import {
export
default
{
data
:
()
=>
({
notifications
:
[
'
Mike, John responded to your email
'
,
'
You have 5 new tasks
'
,
'
You
\'
re now a friend with Andrew
'
,
'
Another Notification
'
,
'
Another One
'
],
title
:
null
,
responsive
:
false
}),
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment