14 lines
182 B
Vue
14 lines
182 B
Vue
<script setup lang="ts"></script>
|
|
|
|
<template>
|
|
<div class="promotion-wrap">
|
|
<slot></slot>
|
|
</div>
|
|
</template>
|
|
|
|
<style scoped>
|
|
.promo-wrap {
|
|
background-color: tan;
|
|
}
|
|
</style>
|