mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-11-02 16:28:27 +00:00
tooltips créatures
This commit is contained in:
parent
37e28207f0
commit
e15a84fa0e
7 changed files with 281 additions and 5 deletions
|
|
@ -220,6 +220,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) {
|
||||
|
|
@ -240,6 +249,16 @@ export default {
|
|||
if (page) {
|
||||
this.page = page
|
||||
}
|
||||
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue