21 lines
446 B
Vue
21 lines
446 B
Vue
<template>
|
|
<!-- PC -->
|
|
<div class="shadow-lg rounded-2xl mt-2">
|
|
<div class="relative z-20">
|
|
|
|
<div class="min-h-8 rounded-t-2xl shadow-lg bg-hPrimary">
|
|
</div>
|
|
|
|
<actual-banner></actual-banner>
|
|
<banner-actions></banner-actions>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</template>
|
|
|
|
<script setup>
|
|
import ActualBanner from "@/views/creators/ActualBanner.vue";
|
|
import BannerActions from "@/views/creators/BannerActions.vue";
|
|
</script>
|