og-image/src/App.vue
Simon Vieille 47a2365c60
All checks were successful
ci/woodpecker/push/woodpecker Pipeline was successful
change layout: add tool menu
2024-04-14 19:39:47 +02:00

24 lines
378 B
Vue

<template>
<div class="">
<TopMenu />
<main class="pt-5 grid grid-cols-1 lg:grid-cols-[1fr_2fr] lg:gap-x-20">
<RouterView />
</main>
</div>
</template>
<script>
import TopMenu from './base/TopMenu'
export default {
components: {
TopMenu,
},
watch: {
'$route' (to) {
document.title = to.meta.title || 'OG:IMAGE'
}
},
}
</script>