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