App.vue 224 B

1234567891011121314151617
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <style>
  7. #app,
  8. html,
  9. body {
  10. background: rgb(37, 45, 60);
  11. }
  12. /* 隐藏滚动条 */
  13. ::-webkit-scrollbar {
  14. width: 0 !important;
  15. display: none;
  16. }
  17. </style>