16 lines
276 B
Vue
16 lines
276 B
Vue
<script setup lang="ts"></script>
|
|
<template>
|
|
<div>chứng khoán</div>
|
|
</template>
|
|
<style lang="scss" scoped>
|
|
div {
|
|
width: 100%;
|
|
height: 200px;
|
|
background-color: #ededed;
|
|
font-size: 24px;
|
|
display: flex;
|
|
align-items: center;
|
|
justify-content: center;
|
|
}
|
|
</style>
|