11 lines
186 B
Vue
11 lines
186 B
Vue
|
<template>
|
||
|
<Stash>
|
||
|
<Scenes />
|
||
|
</Stash>
|
||
|
</template>
|
||
|
|
||
|
<script setup>
|
||
|
import Stash from '#/components/stashes/stash.vue';
|
||
|
import Scenes from '#/components/scenes/scenes.vue';
|
||
|
</script>
|