Index.vue 733 B

12345678910111213141516171819202122232425262728293031323334353637383940
  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. 首页
  9. </div>
  10. </template>
  11. <style lang="scss" scoped>
  12. @use './css/commonsScrollbar.scss';
  13. .Index * {
  14. -moz-user-select: none;
  15. -webkit-user-select: none;
  16. -ms-user-select: none;
  17. -khtml-user-select: none;
  18. user-select: none;
  19. box-sizing:border-box;
  20. -moz-box-sizing:border-box; /* Firefox */
  21. -webkit-box-sizing:border-box; /* Safari */
  22. }
  23. .Index {
  24. position: fixed;
  25. z-index: 0;
  26. width: 100%;
  27. height: 100%;
  28. top: 0px;
  29. left: 0px;
  30. background-color: #f6f7f9;
  31. }
  32. </style>