mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-12-17 07:30:47 +00:00
déclenchement des tooltips après avoir filtré
This commit is contained in:
parent
c266c54ae0
commit
bf9666fd76
4 changed files with 30 additions and 33 deletions
|
|
@ -386,11 +386,6 @@ export default {
|
|||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
},
|
||||
|
||||
changePage (page) {
|
||||
|
|
@ -400,11 +395,6 @@ export default {
|
|||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
},
|
||||
|
||||
onClickRow (row, item) {
|
||||
|
|
@ -416,6 +406,15 @@ export default {
|
|||
},
|
||||
},
|
||||
|
||||
watch: {
|
||||
monsters: function (newMonsters, oldMonsters) {
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
}
|
||||
},
|
||||
|
||||
mounted () {
|
||||
this.$store.commit('setHasRightDrawer', true)
|
||||
this.$store.commit('setRightDrawer', this.$vuetify.breakpoint.lgAndUp)
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue