readded provacy policy
This commit is contained in:
parent
2807918e2c
commit
eb616ab42f
4 changed files with 73 additions and 17 deletions
16
pages/blog/[...slug].vue
Normal file
16
pages/blog/[...slug].vue
Normal file
|
|
@ -0,0 +1,16 @@
|
|||
<script>
|
||||
export default {
|
||||
async asyncData({ $content, params }) {
|
||||
const post = await $content('blog', params.slug).fetch()
|
||||
|
||||
return { post }
|
||||
}
|
||||
}
|
||||
</script>
|
||||
|
||||
<template>
|
||||
<main>
|
||||
<ContentDoc />
|
||||
</main>
|
||||
</template>
|
||||
|
||||
Loading…
Add table
Add a link
Reference in a new issue