Q-Item Url/Link
-
Is it possible to use Q-Item as "old-style"menu with url links?
Which property can be set as menuItem.Url?<q-list v-for="(menuItem, index) in menuList" :key=“index”> <q-item clickable :active=“menuItem.label === ‘Outbox’” v-ripple> <q-item-section avatar> <q-icon :name=“menuItem.icon” /> </q-item-section> <q-item-section> {{ menuItem.label }} </q-item-section> </q-item> </q-list>
-
The starter-kit shows exactly what you are looking for with the links in the drawer menu.
Scott
-
It works!
Thank you