mirror of
https://github.com/Ocelot-Social-Community/Ocelot-Social.git
synced 2025-12-13 07:46:06 +00:00
22 lines
262 B
Vue
22 lines
262 B
Vue
<template>
|
|
<div>
|
|
<router-view/>
|
|
</div>
|
|
</template>
|
|
|
|
<script>
|
|
export default {
|
|
name: 'PageWrapper',
|
|
props: {
|
|
section: {
|
|
type: Object,
|
|
required: true
|
|
},
|
|
components: {
|
|
type: Array,
|
|
default: null
|
|
}
|
|
}
|
|
}
|
|
</script>
|