1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 20:54:19 +00:00

tooltips créatures

This commit is contained in:
Maxime Moraine 2021-03-13 18:33:35 +01:00
parent 37e28207f0
commit e15a84fa0e
7 changed files with 281 additions and 5 deletions

View file

@ -385,6 +385,15 @@ export default {
changePage (page) {
// console.log(page)
setUrlParams("page", [page])
let self = this
setTimeout(function () {
handleTooltips({pages:self.$site.pages})
}, 100);
this.$router.afterEach(() => {
setTimeout(function () {
handleTooltips({pages:self.$site.pages})
}, 100)
})
},
onClickRow (row, item) {
@ -425,6 +434,16 @@ export default {
if (showColumn) {
this.showColumn = JSON.parse(showColumn)
}
let self = this
setTimeout(function () {
handleTooltips({pages:self.$site.pages})
}, 100);
this.$router.afterEach(() => {
setTimeout(function () {
handleTooltips({pages:self.$site.pages})
}, 100)
})
}
}
</script>