If I add an v-autocomplete in v-app-bar it appears at the top of the app bar, everything else in there is centered.
<v-app-bar app color="primary" dark>
<v-icon class="mr-3">mdi-chart-line</v-icon>
<v-toolbar-title>Centered title</v-toolbar-title>
<v-autocomplete
filled
></v-autocomplete>
<v-spacer />
<v-btn to="/products" nuxt text>
Centered button
</v-btn>
</v-app-bar>
Is there some option I'm missing? Or some other element I should be wrapping around the autocomplete? I'm trying to add as little custom CSS as possible so I can easily update later.
It looks like this:
