Files
Yi.Admin/Yi.Vue/src/layouts/default/widgets/Account.vue

60 lines
1.0 KiB
Vue
Raw Normal View History

2021-10-11 15:45:59 +08:00
<template>
<v-menu
bottom
left
min-width="200"
offset-y
origin="top right"
transition="scale-transition"
>
<template v-slot:activator="{ attrs, on }">
<v-btn
class="ml-2"
min-width="0"
text
v-bind="attrs"
v-on="on"
>
<v-icon>mdi-account</v-icon>
</v-btn>
</template>
<v-list
:tile="false"
flat
nav
>
<template v-for="(p, i) in profile">
<v-divider
v-if="p.divider"
:key="`divider-${i}`"
class="mb-2 mt-2"
/>
<app-bar-item
v-else
:key="`item-${i}`"
to="/"
>
<v-list-item-title v-text="p.title" />
</app-bar-item>
</template>
</v-list>
</v-menu>
</template>
<script>
export default {
name: 'DefaultAccount',
data: () => ({
profile: [
{ title: 'Profile' },
{ title: 'Settings' },
{ divider: true },
{ title: 'Log out' },
],
}),
}
</script>