mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 13:14:20 +00:00
tooltips états préjudiciables et sorts
This commit is contained in:
parent
b508862c9b
commit
336bf264b9
48 changed files with 212 additions and 84 deletions
|
|
@ -22,7 +22,7 @@
|
|||
:color="challenge.color"
|
||||
:value="challengeRate"
|
||||
></v-progress-linear>
|
||||
<span class="subtitle-2">PX : </span>{{ totalXP }}
|
||||
<span class="subtitle-2">PX : </span>{{ totalXP }} ({{ Math.floor(totalXP / pc) }} par PJ)
|
||||
</div>
|
||||
<v-row class="d-flex align-center my-0" v-for="c in creatures">
|
||||
<v-col class="px-0 py-1">
|
||||
|
|
|
|||
|
|
@ -43,12 +43,13 @@ export default {
|
|||
},
|
||||
|
||||
mounted () {
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -510,12 +510,13 @@ export default {
|
|||
|
||||
mounted () {
|
||||
//console.log(this.$page)
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -12,12 +12,13 @@ export default {
|
|||
name: 'Page',
|
||||
components: { },
|
||||
mounted () {
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
|
|
@ -62,12 +62,13 @@ export default {
|
|||
|
||||
mounted () {
|
||||
// console.log(this.spell)
|
||||
let self = this
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100);
|
||||
this.$router.afterEach(() => {
|
||||
setTimeout(function () {
|
||||
handleTooltips()
|
||||
handleTooltips({pages:self.$site.pages})
|
||||
}, 100)
|
||||
})
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue