traxxx-web/pages/stashes/@username/@stashSlug/actors/+Page.vue

11 lines
186 B
Vue

<template>
<Stash>
<Actors />
</Stash>
</template>
<script setup>
import Stash from '#/components/stashes/stash.vue';
import Actors from '#/components/actors/actors.vue';
</script>