AppToolbar.vue
2.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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
<template>
<v-toolbar
class="fixcolors"
fixed
app
>
<v-toolbar-title class="ml-0 pl-3">
<v-toolbar-side-icon @click.stop="handleDrawerToggle" class="hide"></v-toolbar-side-icon>
</v-toolbar-title>
<v-spacer></v-spacer>
<v-menu offset-y origin="center center" :nudge-bottom="10" transition="scale-transition">
<v-btn icon large flat slot="activator">
<v-avatar size="40px">
<img src="/static/icon/user.png"/>
</v-avatar>
</v-btn>
<v-list class="pa-0">
<v-list-tile v-for="(item,index) in items" :to="!item.href ? { name: item.name } : null" :href="item.href" @click="item.click" ripple="ripple" :disabled="item.disabled" :target="item.target" rel="noopener" :key="index">
<v-list-tile-action v-if="item.icon">
<v-icon>{{ item.icon }}</v-icon>
</v-list-tile-action>
<v-list-tile-content>
<v-list-tile-title>{{ item.title }}</v-list-tile-title>
</v-list-tile-content>
</v-list-tile>
</v-list>
</v-menu>
</v-toolbar>
</template>
<script>
import Util from "@/util";
export default {
search: "",
name: "app-toolbar",
data: () => ({
search: "",
userName:'',
items: [
{
// icon: 'account_circle',
href: "/changepassword",
title: "Change Password",
click: e => {
console.log(e);
}
},
// {
// icon: 'settings',
// href: '#',
// title: 'Settings',
// click: (e) => {
// console.log(e);
// }
// },
{
// icon: 'fullscreen_exit',
href: "#",
title: "Logout",
click: e => {
window.getApp.$emit("APP_LOGOUT");
}
}
]
}),
computed: {
toolbarColor() {
return this.$vuetify.options.extra.mainNav;
}
},
methods: {
handleDrawerToggle() {
window.getApp.$emit("APP_DRAWER_TOGGLED");
},
handleFullScreen() {
Util.toggleFullScreen();
}
},
};
</script>
<style>
.v-icon{
font-size:30px;
}
@media screen and (min-width: 1270px){
.hide{
display: none;
}
/* }
@media screen and (max-width: 962px) {
.imglogo{
position: absolute;
top: 13px;
left: 13px !important;
width: 70px;
height: 24px;
} */
}
@media screen and (max-width: 420px){
.v-list__tile {
font-size:14px;
padding: 0 10px;
}
.name{
font-size:15px;
}
}
</style>