-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathMainNav.vue
More file actions
35 lines (33 loc) · 1.43 KB
/
MainNav.vue
File metadata and controls
35 lines (33 loc) · 1.43 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
<template>
<nav class="app-nav nav nav-tabs sub-nav ember-view">
<div class="limit-width">
<div class="sub-nav-item ember-view">
<a @click="goToAccessToken" class="ember-view" :class="{'active': isAccessTokenActive}">
<svg style="height: 24px; width: 24px;" class="icon malibu-icon fill-purple" >
<title id="malibu-icon-ember486">Access Tokens</title>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#overview-28"></use>
</svg>
<span class="sub-nav-item-name gray">Access Tokens</span>
</a>
</div>
<div class="sub-nav-item ember-view">
<a @click="goToAccountSetting" class="ember-view" :class="{'active': isAccountSettingActive}">
<svg style="height: 24px; width: 24px;" class="icon malibu-icon fill-gray" >
<title id="malibu-icon-ember489">Account Setting</title>
<use xmlns:xlink="http://www.w3.org/1999/xlink" xlink:href="#formation-28"></use>
</svg>
<span class="sub-nav-item-name gray">Account Setting</span>
</a>
</div>
</div>
</nav>
</template>
<script>
import MainNav from "./MainNav"
export default MainNav
</script>
<style scoped>
a:hover {
cursor: pointer;
}
</style>