mirror of
https://github.com/em-squared/5e-drs.git
synced 2025-10-30 21:24:18 +00:00
29 lines
498 B
Vue
29 lines
498 B
Vue
<template>
|
|
<main class="page content">
|
|
|
|
<Content class="content" />
|
|
|
|
</main>
|
|
</template>
|
|
|
|
<script>
|
|
import { handleTooltips } from '@theme/util'
|
|
export default {
|
|
name: 'Page',
|
|
components: { },
|
|
mounted () {
|
|
let self = this
|
|
setTimeout(function () {
|
|
handleTooltips({pages:self.$site.pages})
|
|
}, 100);
|
|
this.$router.afterEach(() => {
|
|
setTimeout(function () {
|
|
handleTooltips({pages:self.$site.pages})
|
|
}, 100)
|
|
})
|
|
}
|
|
}
|
|
</script>
|
|
|
|
<style>
|
|
</style>
|