Skip to content

Commit

Permalink
fix(v-navigation-drawer): pull in Dependent mixin for click-outside
Browse files Browse the repository at this point in the history
  • Loading branch information
DRoet committed Sep 14, 2018
1 parent f3b4192 commit d7318a6
Showing 1 changed file with 4 additions and 1 deletion.
5 changes: 4 additions & 1 deletion src/components/VNavigationDrawer/VNavigationDrawer.js
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,7 @@ import '../../stylus/components/_navigation-drawer.styl'

// Mixins
import Applicationable from '../../mixins/applicationable'
import Dependent from '../../mixins/dependent'
import Overlayable from '../../mixins/overlayable'
import SSRBootable from '../../mixins/ssr-bootable'
import Themeable from '../../mixins/themeable'
Expand Down Expand Up @@ -30,6 +31,7 @@ export default {
'right',
'width'
]),
Dependent,
Overlayable,
SSRBootable,
Themeable
Expand Down Expand Up @@ -259,7 +261,8 @@ export default {
name: 'click-outside',
value: () => (this.isActive = false),
args: {
closeConditional: this.closeConditional
closeConditional: this.closeConditional,
include: this.getOpenDependentElements
}
}]

Expand Down

0 comments on commit d7318a6

Please sign in to comment.