You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- <template>
- <div class="page">
- <div class="title">{{ $t("API.comingSoon") }}</div>
- </div>
- </template>
- <script setup>
- // import { ref } from 'vue'
- </script>
- <style lang="scss" scoped>
- .page {
- padding: 30px;
- width: 100%;
- overflow: hidden;
- overflow-y: scroll;
- background-color: #fff;
- min-height: calc(100vh - 80px);
- text-align: center;
- .title {
- font-size: 50px;
- }
- }
- </style>
|