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>
|
2021-03-12 19:28:30 +01:00
|
|
|
import { handleTooltips } from '@theme/util'
|
2020-03-30 11:03:20 +02:00
|
|
|
export default {
|
|
|
|
|
name: 'Page',
|
2021-03-12 19:28:30 +01:00
|
|
|
components: { },
|
|
|
|
|
mounted () {
|
2021-03-13 16:05:08 +01:00
|
|
|
let self = this
|
2021-03-12 19:28:30 +01:00
|
|
|
setTimeout(function () {
|
2021-03-13 16:05:08 +01:00
|
|
|
handleTooltips({pages:self.$site.pages})
|
2021-03-12 19:28:30 +01:00
|
|
|
}, 100);
|
|
|
|
|
this.$router.afterEach(() => {
|
|
|
|
|
setTimeout(function () {
|
2021-03-13 16:05:08 +01:00
|
|
|
handleTooltips({pages:self.$site.pages})
|
2021-03-12 19:28:30 +01:00
|
|
|
}, 100)
|
|
|
|
|
})
|
|
|
|
|
}
|
2020-03-30 11:03:20 +02:00
|
|
|
}
|
|
|
|
|
</script>
|
|
|
|
|
|
|
|
|
|
<style>
|
|
|
|
|
</style>
|