Index.vue 1019 B

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051
  1. <script setup>
  2. import { computed, onMounted, onUnmounted, watch, ref } from "vue";
  3. import { useRouter } from 'vue-router';
  4. const router = useRouter();
  5. </script>
  6. <template>
  7. <div class="Index">
  8. <div class="note">市政管网智能检测与维护</div>
  9. <div class="note">后台管理平台</div>
  10. </div>
  11. </template>
  12. <style lang="scss" scoped>
  13. @use './css/commonsScrollbar.scss';
  14. .Index * {
  15. // -moz-user-select: none;
  16. // -webkit-user-select: none;
  17. // -ms-user-select: none;
  18. // -khtml-user-select: none;
  19. // user-select: none;
  20. box-sizing:border-box;
  21. -moz-box-sizing:border-box; /* Firefox */
  22. -webkit-box-sizing:border-box; /* Safari */
  23. }
  24. .Index {
  25. position: relative;
  26. z-index: 0;
  27. width: 100%;
  28. height: 100%;
  29. top: 0px;
  30. left: 0px;
  31. background-color: #ffffff;
  32. .note {
  33. width: 100%;
  34. font-size: 2rem;
  35. text-align: center;
  36. color: #5c5c5c;
  37. margin: 0.5rem 0px 0.5rem 0px;
  38. }
  39. }
  40. </style>