mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-11 08:33:53 +00:00
18cf0ba865
Co-authored-by: Sylvain Marroufin <marroufin.sylvain@gmail.com> Co-authored-by: Pooya Parsa <pyapar@gmail.com>
17 lines
270 B
Vue
17 lines
270 B
Vue
<template>
|
|
<DocusContent :document="page" :class="page.bgClass" />
|
|
</template>
|
|
|
|
<script>
|
|
import { defineComponent } from '@nuxtjs/composition-api'
|
|
|
|
export default defineComponent({
|
|
props: {
|
|
page: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
}
|
|
})
|
|
</script>
|