Skip to content

Commit

Permalink
fix (options) update options when update filters
Browse files Browse the repository at this point in the history
  • Loading branch information
cirolosapio committed Nov 25, 2020
1 parent bde4c24 commit 8eaa91c
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
{
"name": "quasar-app-extension-qs-select",
"version": "0.10.7",
"version": "0.10.8",
"description": "QsSelect - Quasar App Extension",
"author": "heartbeatLV <lscorionjs@gmail.com>",
"license": "MIT",
Expand Down
7 changes: 4 additions & 3 deletions src/component/QsSelect.vue
Original file line number Diff line number Diff line change
Expand Up @@ -182,14 +182,15 @@ export default {
return this.noOnly
? {}
: {
mouseenter: () => { this.hovering = true },
mouseleave: () => { this.hovering = false }
}
mouseenter: () => { this.hovering = true },
mouseleave: () => { this.hovering = false }
}
}
},
watch: {
options () { this.resetOptions() },
async filters () { await this.prepareOptions() },
value: {
immediate: true,
async handler (value) {
Expand Down

0 comments on commit 8eaa91c

Please sign in to comment.