I'm diving into Vue and looking to create a horizontal top-right menu with Vuetify. However, I'm getting a vertical menu instead of the desired horizontal layout. The Vuetify documentation doesn't offer a clear example of how to implement the most common type of menu. How can I adjust the configuration to achieve a horizontal menu?
Here is the template:
<v-app>
<v-app-bar
app
color="primary"
light
>
<v-navigation-drawer
v-model="drawer"
right
width="500"
>
<v-list
nav
dense
max-width="240"
>
<v-list-item-group>
<v-list-item>
<v-list-item-title>Log in</v-list-item-title>
</v-list-item>
<v-list-item>
<v-list-item-title>Sign in</v-list-item-title>
</v-list-item>
</v-list-item-group>
</v-list>
</v-navigation-drawer>
<v-spacer />
</v-app-bar>
</v-app>