17 lines
374 B
Vue
17 lines
374 B
Vue
<script setup lang="ts">
|
|
</script>
|
|
<template>
|
|
<div class="content">
|
|
<span>Quảng cáo ở đây</span>
|
|
</div>
|
|
</template>
|
|
<style scoped lang="scss">
|
|
.content {
|
|
font-size: 18px;
|
|
background-color: rgb(245, 245, 245);
|
|
height: 200px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style> |