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

11 lines
186 B
Vue
Raw Normal View History

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