修改前端

This commit is contained in:
橙子
2021-10-11 15:45:59 +08:00
parent 23461b15a9
commit 0aa09f6a03
72 changed files with 1603 additions and 144 deletions

View 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>