Skip to content

Commit

Permalink
MDI Icons
Browse files Browse the repository at this point in the history
  • Loading branch information
sv2 committed Apr 23, 2020
1 parent e0ffeed commit b4e01d3
Show file tree
Hide file tree
Showing 8 changed files with 5,194 additions and 72 deletions.
10 changes: 9 additions & 1 deletion src/components/menu/menulistitem.vue
Original file line number Diff line number Diff line change
@@ -1,5 +1,13 @@
<template>
<q-expansion-item v-if="item.items" :icon="item.icon" :label="item.title" :caption="item.caption" expand-separator :class="`menuitem-ei-${item.id} ` + itemClass" :active-class="itemActiveClass">
<q-expansion-item
v-if="item.items"
:icon="item.icon"
:label="item.title"
:caption="item.caption"
expand-separator
:class="`menuitem-ei-${item.id} ` + itemClass"
:active-class="itemActiveClass"
>
<q-tooltip anchor="top right" self="center middle" :target="`.menuitem-ei-${item.id} i`">{{ item.title }}</q-tooltip>
<menu-list-item v-for="childItem in item.items" v-bind:key="childItem.id" :item="childItem" />
</q-expansion-item>
Expand Down
Loading

0 comments on commit b4e01d3

Please sign in to comment.