1
0
Fork 0
mirror of https://github.com/em-squared/5e-drs.git synced 2025-11-01 05:54:19 +00:00
5e-drs/docs/.vuepress/theme/components/Page.vue

30 lines
498 B
Vue
Raw Normal View History

2020-03-30 11:03:20 +02:00
<template>
<main class="page content">
2020-03-30 14:26:19 +02:00
<Content class="content" />
2020-03-30 11:03:20 +02:00
</main>
</template>
<script>
import { handleTooltips } from '@theme/util'
2020-03-30 11:03:20 +02:00
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)
})
}
2020-03-30 11:03:20 +02:00
}
</script>
<style>
</style>