App.vue 396 B

123456789101112131415161718192021222324252627
  1. <template>
  2. <div id="app">
  3. <router-view />
  4. </div>
  5. </template>
  6. <script>
  7. export default {
  8. name: 'App'
  9. }
  10. </script>
  11. <style >
  12. ::-webkit-scrollbar {
  13. width: 7px;
  14. height: 7px;
  15. }
  16. ::-webkit-scrollbar-thumb {
  17. background-color: #9999;
  18. /* background: linear-gradient(to left,#32e4c663,#0c6ceb71); */
  19. border-radius: 5px;
  20. box-shadow: 0 2px 12px 0 rgba(204, 201, 201, 0.1)
  21. }
  22. </style>