Files
NSG_PORTAL_V2/components/dynamic-page/page-component/templates/other/ads/default.vue
T
2024-05-31 12:39:53 +07:00

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>