add init user profile button placeholders and spacer between the actions and search bar
This commit is contained in:
parent
26bc3ae957
commit
614bb91c5a
1 changed files with 30 additions and 1 deletions
|
@ -2,6 +2,7 @@
|
||||||
import { ref } from "vue";
|
import { ref } from "vue";
|
||||||
|
|
||||||
const showSearch = ref(false);
|
const showSearch = ref(false);
|
||||||
|
const userProfileActions = ref(false);
|
||||||
</script>
|
</script>
|
||||||
|
|
||||||
<template>
|
<template>
|
||||||
|
@ -34,7 +35,35 @@ const showSearch = ref(false);
|
||||||
</v-responsive>
|
</v-responsive>
|
||||||
</v-slide-x-reverse-transition>
|
</v-slide-x-reverse-transition>
|
||||||
|
|
||||||
<v-btn icon="mdi-account" class="ml-3 mr-2"></v-btn>
|
<v-divider v-show="!showSearch" vertical></v-divider>
|
||||||
|
|
||||||
|
<!------------------>
|
||||||
|
<!-- User Profile -->
|
||||||
|
<!------------------>
|
||||||
|
<v-menu>
|
||||||
|
<template v-slot:activator="{ props }">
|
||||||
|
<v-btn
|
||||||
|
class="ml-3 mr-2"
|
||||||
|
icon="mdi-account"
|
||||||
|
variant="text"
|
||||||
|
v-bind="props"
|
||||||
|
></v-btn>
|
||||||
|
</template>
|
||||||
|
|
||||||
|
<v-list>
|
||||||
|
<v-list-item
|
||||||
|
v-for="(item, index) in [
|
||||||
|
{ title: 'Profile' },
|
||||||
|
{ title: 'Settings' },
|
||||||
|
{ title: 'Log Out' },
|
||||||
|
]"
|
||||||
|
:key="index"
|
||||||
|
:value="index"
|
||||||
|
>
|
||||||
|
<v-list-item-title>{{ item.title }}</v-list-item-title>
|
||||||
|
</v-list-item>
|
||||||
|
</v-list>
|
||||||
|
</v-menu>
|
||||||
</template>
|
</template>
|
||||||
</v-app-bar>
|
</v-app-bar>
|
||||||
</v-app>
|
</v-app>
|
||||||
|
|
Loading…
Reference in a new issue