17 lines
263 B
Vue
17 lines
263 B
Vue
|
<template>
|
||
|
<div>
|
||
|
<Scenes
|
||
|
:scenes="scenes"
|
||
|
/>
|
||
|
</div>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import { inject } from 'vue';
|
||
|
|
||
|
import Scenes from '../../components/scenes/scenes.vue';
|
||
|
|
||
|
const { pageProps } = inject('pageContext');
|
||
|
const { scenes } = pageProps;
|
||
|
</script>
|