You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Using $refs to set a dropActive prop is not ideal as $refs is not reactive.
I would suggest emiting an event.
Simplest way to do it would be to add this.$emit('dropActive, true) near the places where this.dropActive = true is used in the source code and this.$emit('dropActive, false) where this.dropActive = false is used.
Should also solve the issue 254.
Thank you for your attention!
The text was updated successfully, but these errors were encountered:
Using $refs to set a dropActive prop is not ideal as $refs is not reactive.
I would suggest emiting an event.
Simplest way to do it would be to add
this.$emit('dropActive, true)
near the places wherethis.dropActive = true
is used in the source code andthis.$emit('dropActive, false)
wherethis.dropActive = false
is used.Should also solve the issue 254.
Thank you for your attention!
The text was updated successfully, but these errors were encountered: