mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-12 23:35:58 +00:00
23 lines
309 B
Vue
23 lines
309 B
Vue
<template>
|
|
<div>
|
|
<component-doc :component="component" />
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
import ComponentDoc from './ComponentDoc'
|
|
|
|
export default {
|
|
name: 'ComponentPage',
|
|
props: {
|
|
component: {
|
|
type: Object,
|
|
required: true
|
|
}
|
|
},
|
|
components: {
|
|
ComponentDoc
|
|
}
|
|
}
|
|
</script>
|