mirror of
https://github.com/danbulant/Nertivia-Client
synced 2026-06-15 04:21:19 +00:00
Added more data attr
This commit is contained in:
parent
65a0e389fa
commit
eef791a32d
2 changed files with 6 additions and 0 deletions
|
|
@ -11,6 +11,7 @@
|
|||
<div class="container" @mouseleave="mouseLeaveEvent">
|
||||
<div class="navigation-items">
|
||||
<div
|
||||
data-name="Explore"
|
||||
class="item material-icons"
|
||||
:class="{ selected: currentTab == 0 }"
|
||||
@click="switchTab(0)"
|
||||
|
|
@ -19,6 +20,7 @@
|
|||
explore
|
||||
</div>
|
||||
<div
|
||||
data-name="Direct Message"
|
||||
class="item material-icons"
|
||||
:class="{
|
||||
selected: currentTab == 1,
|
||||
|
|
@ -30,6 +32,7 @@
|
|||
chat
|
||||
</div>
|
||||
<div
|
||||
data-name="Servers"
|
||||
class="item material-icons"
|
||||
:class="{
|
||||
selected: currentTab == 2,
|
||||
|
|
@ -41,6 +44,7 @@
|
|||
forum
|
||||
</div>
|
||||
<div
|
||||
data-name="Changelog"
|
||||
class="item material-icons"
|
||||
:class="{ selected: currentTab == 3 }"
|
||||
@click="switchTab(3)"
|
||||
|
|
|
|||
|
|
@ -26,11 +26,13 @@
|
|||
|
||||
</div>
|
||||
<div
|
||||
data-name="Add Friend"
|
||||
class="item material-icons"
|
||||
@click="addFriend"
|
||||
@mouseenter="localToolTipEvent('Add Friend', $event)"
|
||||
>person_add</div>
|
||||
<div
|
||||
data-name="Add Server"
|
||||
class="item material-icons"
|
||||
@click="addServer"
|
||||
@mouseenter="localToolTipEvent('Add Server', $event)"
|
||||
|
|
|
|||
Loading…
Reference in a new issue