Skip to content
Snippets Groups Projects
Commit 64c542cf authored by Henrik Askjer's avatar Henrik Askjer
Browse files

settings button in search bar

parent 233cec93
No related branches found
Tags release_2021-10-01
No related merge requests found
...@@ -8,7 +8,8 @@ ...@@ -8,7 +8,8 @@
item-text="label" item-text="label"
:menu-props="{maxHeight: $vuetify.breakpoint.name === 'xs' ? 190 : 500, transition: 'fade-transition', allowOverflow: true}" :menu-props="{maxHeight: $vuetify.breakpoint.name === 'xs' ? 190 : 500, transition: 'fade-transition', allowOverflow: true}"
prepend-inner-icon="search" prepend-inner-icon="search"
:append-icon="null" append-icon="settings"
:append-icon-cb="()=> alert('hello')"
return-object return-object
rounded rounded
clearable clearable
...@@ -27,6 +28,10 @@ ...@@ -27,6 +28,10 @@
color="primary" color="primary"
:dense="$vuetify.breakpoint.smAndDown" :dense="$vuetify.breakpoint.smAndDown"
> >
<template v-slot:append>
<v-divider/>
<v-btn icon><v-icon>more_vert</v-icon></v-btn>
</template>
<template v-slot:item="data"> <template v-slot:item="data">
<span class="search-hit"> <span class="search-hit">
{{data.item.label}} {{data.item.label}}
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment