1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-10-29 20:54:19 +00:00
5e-drs/docs/.vuepress/theme/components/Page.vue
2021-03-12 19:28:30 +01:00

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>