App.vue 335 B

1234567891011121314151617181920212223242526
  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 lang="scss">
  12. ::-webkit-scrollbar {
  13. width: 10px;
  14. height: 1px;
  15. }
  16. ::-webkit-scrollbar-thumb {
  17. background: #C1C1C1;
  18. border-radius: 10px;
  19. }
  20. ::-webkit-scrollbar-track {
  21. background: #E8E8E8;
  22. }
  23. </style>