I just started exploring vuetify. All the vuetify componets resides in <v-app>
.
I wanted to create menu for my site so in documentation I found <v-app-bar>
and <v-toolbar>
I am confused that if I should keep menu items inside <v-app-bar>
or <v-toolbar>
as offical documentation says
About <v-app-bar>
https://vuetifyjs.com/en/components/app-bars
The
v-app-bar
component is pivotal to any graphical user interface (GUI), as it generally is the primary source of site navigation. The app-bar component works great in conjunction with a v-navigation-drawer for providing site navigation in your application.
About <v-toolbar>
https://vuetifyjs.com/en/components/toolbars
The
v-toolbar
component is pivotal to any gui, as it generally is the primary source of site navigation. The toolbar component works great in conjunction with v-navigation-drawer and v-card.
Both the description are almost same. What is difference in both and when we should use what? or we should use v-toolbar
inside v-app-bar
?