2023-12-30 05:29:53 +00:00
|
|
|
<template>
|
2024-08-20 00:31:51 +00:00
|
|
|
<div class="page">
|
2024-03-21 01:54:05 +00:00
|
|
|
<Actors />
|
2023-12-30 05:29:53 +00:00
|
|
|
</div>
|
|
|
|
</template>
|
|
|
|
|
|
|
|
<script setup>
|
2024-03-21 01:54:05 +00:00
|
|
|
import Actors from '#/components/actors/actors.vue';
|
2023-12-30 05:29:53 +00:00
|
|
|
</script>
|
2024-08-20 00:31:51 +00:00
|
|
|
|
|
|
|
<style scoped>
|
|
|
|
.page {
|
|
|
|
display: flex;
|
|
|
|
flex-grow: 1;
|
|
|
|
}
|
|
|
|
</style>
|