mirror of
https://gitee.com/ccnetcore/Yi
synced 2026-04-26 03:07:56 +08:00
修改前端
This commit is contained in:
59
Yi.Vue/src/layouts/default/widgets/Account.vue
Normal file
59
Yi.Vue/src/layouts/default/widgets/Account.vue
Normal file
@@ -0,0 +1,59 @@
|
||||
<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>
|
||||
Reference in New Issue
Block a user