traxxx-web/pages/stashes/actors/+Page.vue

11 lines
186 B
Vue
Raw Normal View History

2024-03-21 01:54:05 +00:00
<template>
<Stash>
<Actors />
</Stash>
</template>
<script setup>
import Stash from '#/components/stashes/stash.vue';
2024-03-24 03:25:47 +00:00
import Actors from '#/components/actors/actors.vue';
2024-03-21 01:54:05 +00:00
</script>