diff options
| author | taehoon <th.dev91@gmail.com> | 2019-05-16 13:45:18 -0400 |
|---|---|---|
| committer | taehoon <th.dev91@gmail.com> | 2019-05-19 09:16:47 -0400 |
| commit | 07d0143bda8d35b9743731711a2085f8399168c5 (patch) | |
| tree | 3d0bac8c68e3c2e00706b7585f1641411ce2d52e /src/components/extra_buttons/extra_buttons.vue | |
| parent | 5bf208f2d1de1e20964ab06b04561c170867090c (diff) | |
hide three dot menu button if has no items
Diffstat (limited to 'src/components/extra_buttons/extra_buttons.vue')
| -rw-r--r-- | src/components/extra_buttons/extra_buttons.vue | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/components/extra_buttons/extra_buttons.vue b/src/components/extra_buttons/extra_buttons.vue index 38e933bb..ef11138d 100644 --- a/src/components/extra_buttons/extra_buttons.vue +++ b/src/components/extra_buttons/extra_buttons.vue @@ -3,7 +3,7 @@ trigger="click" @hide='showDropDown = false' append-to-body - v-if="showPopper" + v-if="enabled && showPopper" :options="{ placement: 'top', modifiers: { |
