邃芒慧影管理端
Vous ne pouvez pas sélectionner plus de 25 sujets Les noms de sujets doivent commencer par une lettre ou un nombre, peuvent contenir des tirets ('-') et peuvent comporter jusqu'à 35 caractères.
 
 
 
 

23 lignes
401 B

  1. <template>
  2. <div class="page">
  3. <div class="title">{{ $t("API.comingSoon") }}</div>
  4. </div>
  5. </template>
  6. <script setup>
  7. // import { ref } from 'vue'
  8. </script>
  9. <style lang="scss" scoped>
  10. .page {
  11. padding: 30px;
  12. width: 100%;
  13. overflow: hidden;
  14. overflow-y: scroll;
  15. background-color: #fff;
  16. min-height: calc(100vh - 80px);
  17. text-align: center;
  18. .title {
  19. font-size: 50px;
  20. }
  21. }
  22. </style>